-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.56 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
61
62
63
64
65
{
"publisher": "subframe7536",
"name": "theme-maple",
"displayName": "Maple Theme",
"type": "module",
"version": "0.5.0",
"description": "Maple theme for VS Code",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/subframe7536/vscode-theme-maple"
},
"bugs": {
"url": "https://github.com/subframe7536/vscode-theme-maple/issues"
},
"keywords": [
"theme",
"maple",
"light",
"dark"
],
"categories": [
"Themes"
],
"icon": "./resources/icon.png",
"engines": {
"vscode": "^1.43.0"
},
"contributes": {
"themes": [
{
"label": "Maple Dark",
"uiTheme": "vs-dark",
"path": "./themes/maple-dark-color-theme.json"
},
{
"label": "Maple Light",
"uiTheme": "vs",
"path": "./themes/maple-light-color-theme.json"
}
]
},
"scripts": {
"build": "esno src/index.ts",
"dev": "nodemon --watch src -e ts --exec \"esno src/index.ts\"",
"update:key": "esno resources/update-keys.ts",
"format": "eslint . --cache --fix",
"preview": "vsce package --no-dependencies",
"release": "pnpm run build && bumpp --all && vsce publish --no-dependencies"
},
"devDependencies": {
"@subframe7536/eslint-config": "^0.9.2",
"@types/node": "^20.16.5",
"@types/tinycolor2": "^1.4.6",
"@vscode/vsce": "^3.1.0",
"bumpp": "^9.5.2",
"eslint": "^9.10.0",
"esno": "^4.7.0",
"nodemon": "^3.1.4",
"object-path-access": "^4.0.0",
"tinycolor2": "^1.6.0",
"typescript": "^5.6.2"
},
"preview": true
}