forked from jul-sh/lucy-vscode-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.16 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": "lucy-vscode",
"displayName": "lucy",
"description": "Soft but clear syntax theme",
"version": "2.8.2",
"publisher": "juliettepretot",
"repository": "https://github.com/juliettepretot/lucy-vscode",
"scripts": {
"build": "node --experimental-modules src/index.mjs",
"release": "npm run build && git add dist && git commit -m build-theme && npm version patch & vsce publish && git push"
},
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Themes"
],
"icon": "static/icon.png",
"contributes": {
"themes": [
{
"label": "lucy",
"uiTheme": "vs-dark",
"path": "./dist/lucy.json"
},
{
"label": "lucy-evening",
"uiTheme": "vs-dark",
"path": "./dist/lucy-evening.json"
}
]
},
"tags": [
"soft",
"clear",
"pink",
"dark theme",
"color-theme",
"monokai"
],
"devDependencies": {
"clean-slate-lint": "^1.0.9"
},
"husky": {
"hooks": {
"pre-commit": "./node_modules/.bin/clean-slate-lint",
"pre-rewrite": "./node_modules/.bin/clean-slate-lint"
}
},
"dependencies": {
"chroma-js": "^2.1.0"
}
}