-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.5 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
{
"publisher": "subframe7536",
"name": "theme-maple",
"displayName": "Maple Theme",
"type": "module",
"version": "0.6.2",
"description": "Maple theme for VSCode",
"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": "bun src/index.ts",
"dev": "bun --hot src/index.ts",
"update": "bun resources/update-keys.ts",
"prepare": "bun run update",
"vscode:prepublish": "bun run build",
"format": "eslint . --cache --fix",
"pack": "vsce package --no-dependencies",
"release": "bun run build && bumpp --all"
},
"devDependencies": {
"@subframe7536/eslint-config": "^1.1.8",
"@types/node": "^20.17.17",
"@types/tinycolor2": "^1.4.6",
"@vscode/vsce": "^3.2.1",
"bumpp": "^10.0.2",
"eslint": "^9.20.0",
"object-path-access": "^4.0.0",
"tinycolor2": "^1.6.0",
"typescript": "^5.7.3"
}
}