-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.3 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
{
"name": "theme-shadow-vscode",
"displayName": "Theme Shadow",
"description": "Don't look to escape from darkness, learn to live there.",
"version": "0.0.3",
"publisher": "sangamcse",
"engines": {
"vscode": "^1.5.0"
},
"scripts": {
"build": "node --experimental-modules themes/index.mjs",
"vs:pack": "yarn build && vsce package --yarn",
"vs:publish": "yarn build && vsce publish --yarn",
"vs:deploy": "yarn vs:rm && yarn vs:publish",
"vs:rm": "rimraf **.vsix"
},
"repository": {
"type": "git",
"url": "https://github.com/sangamcse/theme-shadow-vscode.git"
},
"license": "MIT",
"categories": [
"Themes"
],
"contributes": {
"themes": [
{
"label": "Theme Shadow",
"uiTheme": "vs-dark",
"path": "./bin/shadow_color_theme.json"
}
]
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/clean-slate-lint",
"pre-rewrite": "./node_modules/.bin/clean-slate-lint"
}
},
"devDependencies": {
"clean-slate-lint": "1.0.9",
"eslint": "6.7.2"
},
"dependencies": {
"rimraf": "3.0.0",
"vsce": "1.71.0"
},
"__metadata": {
"id": "22a2ca09-9373-445d-b109-9219dd118b4c",
"publisherDisplayName": "Sangam Kumar",
"publisherId": "3922c4df-7d82-4353-900b-316e8d3e1514"
}
}