-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.35 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
56
57
58
59
60
61
62
63
{
"name": "optimized-dracula-theme",
"displayName": "Optimized Dracula Theme",
"version": "2.1.2",
"description": "An optimized dracula color theme vscode extension to improve dart/flutter, web/electron and golang dev experience.",
"keywords": [
"optimized",
"dracula",
"dark",
"theme",
"color",
"dart",
"flutter",
"golang",
"electron",
"web",
"vue",
"js",
"ts",
"scss",
"less"
],
"icon": "favicon.ico",
"publisher": "jamesummex",
"author": {
"name": "JamesUmmex",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/JamesUmmec/optimized-dracula-theme"
},
"engines": {
"vscode": "^1.54.0"
},
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Optimized Dracula Theme",
"uiTheme": "vs-dark",
"path": "./themes/raw-color-theme.json"
},
{
"label": "Optimized Dracula Theme (vue)",
"uiTheme": "vs-dark",
"path": "./themes/vue-color-theme.json"
}
]
},
"scripts": {
"build.vue": "ts-node scripts/vue.ts",
"build.vsix": "npm run build.vue && vsce package"
},
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/node": "^17.0.41",
"fs-extra": "^10.1.0",
"ts-node": "^10.8.1",
"typescript": "^4.7.3"
}
}