-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 2.18 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
{
"name": "spacebox-ui",
"displayName": "SpaceBox UI Enhancer",
"description": "Experience enhanced customization of VSCode UI, featuring animations, blur effects, and more.",
"icon": "images/icon.png",
"publisher": "SpaceBox",
"repository": "https://github.com/amnweb/SpaceBox-UI-Enhancer",
"version": "0.1.2",
"engines": {
"vscode": "^1.86.0"
},
"categories": [
"Other"
],
"galleryBanner": {
"color": "#0d1116",
"theme": "dark"
},
"activationEvents": [],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "SpaceBox UI Enhancer Configuration",
"properties": {
"spacebox-ui.defaultStyle": {
"type": "boolean",
"default": true,
"description": "Enable the default SpaceBoxUI style style.",
"markdownDescription": "This will enable the default SpaceBoxUI style",
"order": 1
},
"spacebox-ui.blurEffect": {
"type": "boolean",
"default": false,
"description": "Enable the blur effect. This includes the right-click context menu, menu bar, widgets, popups.",
"order": 2
},
"spacebox-ui.commandCenterBlur": {
"type": "boolean",
"default": false,
"description": "Enable the command center menu blur.",
"order": 3
},
"spacebox-ui.importCss": {
"type": "string",
"default": "",
"description": "Path to the custom CSS file. This file will be imported directly in VSCode style.",
"order": 4
}
}
},
"commands": [
{
"command": "spacebox-ui.modifyFiles",
"title": "SpaceBox Enable UI Enhancer"
},
{
"command": "spacebox-ui.restoreSettings",
"title": "SpaceBox Disable UI Enhancer"
}
]
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint"
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "^18.0.0",
"@types/vscode": "^1.80.0",
"@vscode/test-cli": "^0.0.4",
"@vscode/test-electron": "^2.3.8",
"eslint": "^8.56.0",
"typescript": "^5.3.3"
}
}