-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.07 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
{
"name": "prism",
"displayName": "Light Theme ( Prism )",
"description": "Light theme for ... eyes or something.",
"version": "1.2.0",
"publisher": "usernamehw",
"repository": {
"type": "git",
"url": "https://github.com/usernamehw/vscode-theme-prism"
},
"icon": "img/icon.png",
"license": "MIT",
"bugs": {
"url": "https://github.com/usernamehw/vscode-theme-prism/issues"
},
"engines": {
"vscode": "^1.66.0"
},
"qna": false,
"keywords": [
"theme",
"light",
"soft",
"mild",
"warm",
"easy",
"eyes",
"light theme"
],
"categories": [
"Themes"
],
"scripts": {
"vscode:prepublish": "node minimize.js",
"watch": "nodemon --watch themes/Prism-color-theme.json --exec \"npm run vscode:prepublish\""
},
"contributes": {
"themes": [
{
"label": "Prism",
"uiTheme": "vs",
"path": "./themes/Prism-color-theme-minimized.json"
},
{
"label": "Prism (No Bold)",
"uiTheme": "vs",
"path": "./themes/Prism-color-theme-no-bold-minimized.json"
}
]
},
"devDependencies": {
"@types/node": "16.x",
"json5": "^2.2.3"
}
}