-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.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
{
"name": "papercolor-vscode-redux",
"displayName": "PaperColor Redux Theme",
"description": "Updated papercolor theme for vscode.",
"version": "1.1.0",
"publisher": "mrworkman",
"icon": "images/logo.png",
"repository": {
"type": "git",
"url": "https://github.com/mrworkman/papercolor-vscode-redux"
},
"engines": {
"vscode": "^1.75.1"
},
"categories": [
"Themes"
],
"keywords": [
"VSCode",
"Themes"
],
"contributes": {
"themes": [
{
"label": "PaperColor Redux",
"uiTheme": "vs",
"path": "./themes/papercolor-vscode-redux.json"
}
]
},
"devDependencies": {
"@types/node": "^17.0.21",
"ts-command-line-args": "^2.2.1",
"typescript": "^4.6.2",
"vsce": "~2.6.7",
"watch": "^0.13.0",
"yaml": "~1.10.2"
},
"scripts": {
"build": "tsc && node bin/app.js --source-file=src/themes/papercolor.yaml --target-file themes/papercolor-vscode-redux.json",
"watch": "watch --wait=0 --interval=1 'npm run build' ./src/",
"package": "npm run build && vsce ls && vsce package",
"publish": "vsce publish"
}
}