-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.32 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
{
"name": "zemd-theme-dark",
"displayName": "zemd Theme Dark",
"description": "A Visual Studio Code theme for effective work",
"version": "0.3.0",
"type": "module",
"engines": {
"vscode": "^1.84.0"
},
"categories": [
"Themes"
],
"keywords": [
"theme",
"zemd",
"dark"
],
"contributes": {
"themes": [
{
"label": "zemd Theme Dark",
"uiTheme": "vs-dark",
"path": "./themes/dark.json"
}
]
},
"scripts": {
"dev": "nodemon",
"build": "bun src/index.ts",
"vscode:prepublish": "bun run build",
"package": "rm -rf ./build && mkdir ./build && vsce package -o ./build/zemd-vscode-theme.vsix",
"publish": "vsce publish minor"
},
"author": "Dmytro Zelenetskyi <dmytro.zelenetskyi@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"@types/chroma-js": "^2.4.3",
"@types/node": "^20.9.2",
"@vscode/vsce": "^2.22.0",
"@zemd/tsconfig": "^1.2.0",
"chroma-js": "^2.4.2",
"nodemon": "^3.0.1",
"style-dictionary": "^3.9.0"
},
"repository": {
"type": "git",
"url": "https://github.com/zemd/vscode-theme-zemd.git"
},
"publisher": "zemd",
"nodemonConfig": {
"watch": [
"src"
],
"ext": ".ts,.json,.js",
"ignore": [
"src/generated/**"
],
"exec": "bun ./src/index.ts"
}
}