-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.8 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.8 KB
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
{
"name": "vset",
"productName": "VSET",
"version": "4.3.6",
"description": "VSET",
"author": "NangInShell",
"main": "./out/main/index.js",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"scripts": {
"dev": "electron-vite dev",
"lint": "eslint . --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "vue-tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "pnpm run typecheck:node && pnpm run typecheck:web",
"start": "electron-vite preview",
"build": "pnpm run typecheck && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:win": "pnpm run build && electron-builder --win --dir"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"electron-updater": "^6.6.2",
"element-plus": "^2.11.1",
"iconv-lite": "^0.6.3",
"naive-ui": "^2.42.0",
"pinia": "^3.0.3",
"pinia-plugin-persistedstate": "^4.5.0",
"ps-tree": "^1.2.0",
"systeminformation": "^5.27.8",
"tree-kill": "^1.2.2",
"vicons": "^0.0.1",
"vue": "^3.5.20",
"vue-router": "^4.5.1"
},
"devDependencies": {
"@antfu/eslint-config": "^5.2.1",
"@electron-toolkit/preload": "^3.0.2",
"@electron-toolkit/tsconfig": "^1.0.1",
"@electron-toolkit/utils": "^4.0.0",
"@types/node": "^24.3.0",
"@vicons/ionicons5": "^0.13.0",
"@vitejs/plugin-vue": "^5.2.4",
"@vue/eslint-config-prettier": "^10.2.0",
"@vue/eslint-config-typescript": "^14.6.0",
"electron": "^27.3.11",
"electron-builder": "^26.0.12",
"electron-vite": "^4.0.0",
"eslint": "^9.34.0",
"eslint-plugin-vue": "^10.4.0",
"typescript": "^5.9.2",
"vite": "^7.1.3",
"vue-tsc": "^2.2.12"
},
"pnpm": {
"onlyBuiltDependencies": [
"electron"
]
}
}