-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.32 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
{
"name": "minimal-theme",
"version": "1.1.2",
"displayName": "Minimal VSCode Theme",
"description": "A minimal VSCode theme.",
"publisher": "maximetreca",
"repository": {},
"license": "MIT",
"scripts": {
"build": "node ./src/index.js",
"lint": "node ./src/lint.js",
"package": "vsce package -o ./minimal-theme.vsix",
"vscode:prepublish": "npm run build",
"vsce-publish": "vsce publish"
},
"maintainers": [
"Maxime Treca"
],
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme"
],
"icon": "icon.png",
"galleryBanner": {
"color": "#000000",
"theme": "dark"
},
"contributes": {
"themes": [
{
"label": "Minimal Theme - Dark",
"uiTheme": "vs-dark",
"path": "./themes/minimal-dark.json"
},
{
"label": "Minimal Theme - Sorcery",
"uiTheme": "vs-dark",
"path": "./themes/minimal-sorcery.json"
}
]
},
"devDependencies": {
"@eslint/js": "^9.11.0",
"@vscode/vsce": "^3.1.0",
"eslint": "^9.11.0",
"globals": "^15.9.0",
"js-yaml": "^4.1.0"
}
}