-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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
{
"name": "code-enhance",
"description": "A vscode toolkit that make coding more comfortable.",
"version": "0.1.1",
"type": "module",
"private": true,
"engines": {
"vscode": "^1.83.0"
},
"license": "MIT",
"repository": {
"url": "https://github.com/hilltwice233/code-enhance"
},
"publisher": "hilltwice",
"main": "extension.js",
"contributes": {
"themes": [
{
"label": "Enhanced Dark Source",
"id": "code-enhance.dark.source",
"uiTheme": "vs-dark",
"path": "themes/dark-color-theme.json"
},
{
"label": "Enhanced Light Source",
"id": "code-enhance.light.source",
"uiTheme": "vs",
"path": "themes/light-color-theme.json"
}
],
"commands": []
},
"scripts": {
"package": "npm run build && cd extension && vsce package && cd ..",
"prettier": "prettier . -w",
"build": "npm run rollup && node scripts/build.js",
"rollup": "rollup --config rollup.config.js",
"test": "vitest run"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/node": "^20.8.9",
"@types/vscode": "^1.83.1",
"@vscode/vsce": "^2.22.0",
"prettier": "^3.0.3",
"rollup": "^4.1.5",
"tslib": "^2.6.2",
"typescript": "^5.2.2",
"vitest": "^0.34.6"
}
}