-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.27 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
{
"name": "dracula-theme",
"displayName": "Darcula Theme by Anurag",
"description": "Darcula Theme similar to the one in Jetbrains IDEs.",
"version": "0.4.2",
"license": "MIT",
"publisher": "anuragpathak",
"engines": {
"vscode": "^1.12.0"
},
"categories": [
"Themes"
],
"homepage": "https://github.com/AnuragThePathak/darcula-theme",
"repository": {
"type": "git",
"url": "https://github.com/AnuragThePathak/darcula-theme.git"
},
"icon": "icon.png",
"contributes": {
"themes": [
{
"label": "Darcula Theme by Anurag",
"uiTheme": "vs-dark",
"path": "theme.json"
}
]
},
"scripts": {
"publish": "vsce publish",
"build": "vsce package",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./theme.json --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./"
},
"devDependencies": {
"esbuild": "^0.14.24",
"@vscode/vsce": "^2.22.0"
}
}