-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
145 lines (145 loc) · 4.36 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
{
"name": "background-online",
"displayName": "background-online",
"description": "在线壁纸自动切换,支持自定义API地址;Online wallpaper automatic switching, support for custom API address",
"version": "2.0.7",
"scripts": {
"vscode:prepublish": "npm run compile",
"vscode:uninstall": "node ./out/uninstall",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish",
"test": "npm run compile && node ./node_modules/vscode/bin/test",
"check": "tslint -p ./"
},
"publisher": "helin",
"repository": {
"type": "git",
"url": "https://github.com/HeLinSpace/vscode-online-background"
},
"changelog": {
"type": "markdown",
"path": "CHANGELOG.md"
},
"signature": {
"type": "microsoft",
"version": "1.0.0"
},
"engines": {
"vscode": "^1.85.0"
},
"icon": "resources/background-online.jpeg",
"galleryBanner": {
"color": "#03385a",
"theme": "dark"
},
"categories": [
"Themes"
],
"keywords": [
"bg",
"online",
"bg",
"bk",
"cover",
"theme",
"image",
"background",
"wallpaper"
],
"activationEvents": [
"*"
],
"license": "ISC",
"main": "./out/extension",
"extensionKind": [
"ui",
"workspace"
],
"files": [
"out/**/*"
],
"contributes": {
"commands": [
{
"command": "extension.backgroundOnline.setting",
"title": "background - setting"
}
],
"keybindings": [],
"configuration": {
"title": "background-online config",
"properties": {
"backgroundOnline.opacity": {
"type": "number",
"maximum": 1,
"minimum": 0,
"default": 0.2,
"description": "背景透明度(0 - 1)"
},
"backgroundOnline.currentBg": {
"type": "string",
"default": "",
"description": "当前壁纸地址"
},
"backgroundOnline.configured": {
"type": "boolean",
"default": false,
"description": "是否完成初始化"
},
"backgroundOnline.enabled": {
"type": "boolean",
"default": true,
"description": "是否启用插件"
},
"backgroundOnline.autoStatus": {
"type": "boolean",
"default": true,
"description": "每次启动时自动更换背景"
},
"backgroundOnline.sourceVersion": {
"type": "string",
"default": "v2.0.5",
"description": "当前壁纸源版本"
},
"backgroundOnline.checkSourceVersion": {
"type": "boolean",
"default": true,
"description": "检查壁纸源更新"
},
"backgroundOnline.sourceUrl": {
"type": "string",
"default": "",
"description": "壁纸源更新地址"
},
"backgroundOnline.currentSource": {
"type": "object",
"default": {},
"description": "当前壁纸源设置"
},
"backgroundOnline.imageSource": {
"type": "array",
"default": [],
"description": "壁纸源"
},
"backgroundOnline.history": {
"type": "array",
"default": [],
"description": "使用过的壁纸"
}
}
}
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.6",
"@types/node-fetch": "^2.6.9",
"@types/vscode": "^1.85.0",
"typescript": "^5.3.3"
},
"dependencies": {
"json5": "^2.2.3",
"node-fetch": "^2.7.0"
}
}