forked from shalldie/vscode-background
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 3.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "background",
"displayName": "background",
"description": "A simple tool to make your vscode's background look better!",
"version": "1.1.19",
"publisher": "shalldie",
"repository": {
"type": "git",
"url": "git+https://github.com/shalldie/vscode-background.git"
},
"engines": {
"vscode": "^1.17.0"
},
"icon": "vscode-background-logo.png",
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "extension.background.info",
"title": "Background - Info"
}
],
"configuration": {
"type": "object",
"title": "Plugin background config. background 插件配置",
"properties": {
"background.enabled": {
"type": "boolean",
"default": true,
"description": "Plugin background enabled.background 插件是否启用"
},
"background.useFront": {
"type": "boolean",
"default": true,
"description": "If use front image,which means image is placed on the top of your code. 是否使用前景图,这样会使图片放在代码的顶部"
},
"background.style": {
"type": "object",
"default": {
"content": "''",
"pointer-events": "none",
"position": "absolute",
"z-index": "99999",
"width": "100%",
"height": "100%",
"background-position": "100% 100%",
"background-repeat": "no-repeat",
"opacity": 1
},
"description": "Custom common style.自定义各项公有样式."
},
"background.styles": {
"type": "array",
"default": [
{},
{},
{}
],
"description": "Each style of backgrounds. 每一个背景图的独有样式。"
},
"background.useDefault": {
"type": "boolean",
"default": true,
"description": "Use default images.使用默认图片"
},
"background.customImages": {
"type": "array",
"default": [],
"description": "Your custom Images(Max length is 3). 自己定制背景图,最多3个"
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"typescript": "^2.5.3",
"vscode": "^1.1.5",
"@types/node": "^7.0.43",
"@types/mocha": "^2.2.42"
}
}