-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.05 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.05 KB
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
{
"name": "pvc-vscode-theme",
"displayName": "PVC",
"description": "A colorful light/dark theme",
"license": "mit",
"repository": {
"url": "https://github.com/friggeri/pvc"
},
"version": "1.0.8",
"engines": {
"vscode": "^1.58.0"
},
"categories": [
"Themes"
],
"watch": {
"build:dev": "src/pvc.yaml"
},
"scripts": {
"build": "ts-node src/build.ts",
"build:dev": "ts-node --transpile-only src/build.ts",
"watch": "npm-watch"
},
"publisher": "friggeri",
"contributes": {
"themes": [
{
"label": "PVC (Dark)",
"uiTheme": "vs-dark",
"path": "./themes/pvc-dark-color-theme.json"
},
{
"label": "PVC (Light)",
"uiTheme": "vs",
"path": "./themes/pvc-light-color-theme.json"
}
]
},
"devDependencies": {
"@types/js-yaml": "^4.0.5",
"@types/node": "^17.0.17",
"@types/tinycolor2": "^1.4.3",
"js-yaml": "^4.1.0",
"npm-watch": "^0.11.0",
"tinycolor2": "^1.4.2",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}