-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
52 lines (52 loc) · 1.19 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
{
"name": "radical-vscode",
"displayName": "Radical",
"description": "A dark theme for radical hacking inspired by retro futuristic design",
"version": "3.3.1",
"publisher": "dhedgecock",
"license": "ISC",
"engines": {
"vscode": "^1.40.0",
"node": "16 || 18"
},
"bugs": {
"url": "https://github.com/dhedgecock/radical-vscode/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/dhedgecock/radical-vscode"
},
"icon": "assets/icon.png",
"galleryBanner": {
"color": "#141322",
"theme": "dark"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Radical",
"uiTheme": "vs-dark",
"path": "./dist/Radical.json"
}
]
},
"scripts": {
"build": "ts-node ./theme/build.ts",
"format": "prettier --write *.md theme",
"lint": "NODE_ENV=test eslint theme"
},
"devDependencies": {
"@types/chroma-js": "2.1.4",
"@types/node": "18.11.17",
"@typescript-eslint/eslint-plugin": "5.47.0",
"@typescript-eslint/parser": "5.47.0",
"chroma-js": "2.4.2",
"eslint": "8.30.0",
"prettier": "2.8.1",
"ts-node": "10.9.1",
"typescript": "4.9.4"
}
}