-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 838 Bytes
/
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
{
"name": "vscode-cents-theme",
"displayName": "💰Cents",
"description": "A dark VS Code theme that just makes sense.",
"version": "1.4.0",
"publisher": "piperchester",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/piperchester/vscode-cents-theme"
},
"scripts": {
"build": "node jsonify && vsce package",
"clean": "rm -rf *.vsix cents.json",
"json": "node jsonify",
"start": "npm run clean && vsce package"
},
"engines": {
"vscode": "^1.13.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"cents",
"dark",
"syntax"
],
"contributes": {
"themes": [
{
"label": "Cents",
"uiTheme": "vs-dark",
"path": "./cents.json"
}
]
},
"devDependencies": {
"vsce": "^1.77.0"
}
}