-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.23 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
{
"name": "sepia",
"displayName": "Sepia Theme",
"description": "Your eyes will thank you",
"version": "1.2.0",
"publisher": "ZYinMD",
"repository": "https://github.com/ZYinMD/sepia",
"icon": "icon.png",
"engines": {
"vscode": "^1.29.0"
},
"categories": [
"Themes"
],
"keywords": [
"parchment",
"vintage",
"solarized",
"yellow",
"brown"
],
"contributes": {
"themes": [
{
"label": "Sepia",
"uiTheme": "vs",
"path": "./themes/sepia.json"
},
{
"label": "Sepia from Cuttlefish",
"uiTheme": "vs-dark",
"path": "./themes/sepia-from-cuttlefish.json"
}
]
},
"scripts": {
"visualize": "node ./scripts/visualize.js",
"postvisualize": "printf 'For faster speed, you might want to run `node ./scripts/visualize.js` directly'",
"postversion": "auto-changelog -l 100 -b 100 && git add CHANGELOG.md && git commit --amend --no-edit"
},
"devDependencies": {
"auto-changelog": "^1.10.2",
"comment-json": "^1.1.3",
"cssjson": "^2.1.3"
}
}