forked from DHedgecock/radical-vscode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.11 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
{
"name": "radical-vscode",
"displayName": "Radical",
"description": "A dark theme for radical hacking inspired by retro futuristic design",
"type": "module",
"version": "2.2.0",
"publisher": "dhedgecock",
"license": "ISC",
"engines": {
"vscode": "^1.40.0",
"node": "^12.7.0"
},
"bugs": {
"url": "https://github.com/dhedgecock/radical-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dhedgecock/radical-vscode"
},
"scripts": {
"build": "node build.mjs",
"lint": "NODE_ENV=test eslint build.mjs theme/**.mjs",
"format": "prettier --write *.md build.mjs theme/**.mjs"
},
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#141322",
"theme": "dark"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Radical",
"uiTheme": "vs-dark",
"path": "./dist/Radical.json"
}
]
},
"devDependencies": {
"@crystal-ball/prettier-base": "2.2.0",
"chroma-js": "2.1.0",
"eslint-config-eloquence": "14.10.0"
},
"prettier": "@crystal-ball/prettier-base"
}