-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.55 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.55 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "desktool",
"private": true,
"version": "0.0.13",
"type": "module",
"author": {
"name": "hsianglee",
"url": "https://github.com/hsiangleev/desktool"
},
"description": "使用electron和vue3编写的桌面工具",
"scripts": {
"dev": "vite",
"electron:dev": "unbuild && cross-env NODE_ENV=development electron ./dist/server/main.cjs",
"build:render": "vite build",
"build:server": "unbuild",
"build": "npm run build:server && npm run build:render && electron-builder -c electron-builder.config.mjs --win",
"lint": "stylelint **/*.{css,vue} --fix && eslint . --fix && vue-tsc -b",
"tsc": "vue-tsc --noEmit",
"test": "npm-run-all -p lint tsc --continue-on-error"
},
"main": "dist/server/main.cjs",
"dependencies": {
"element-plus": "^2.11.1",
"vue": "^3.5.18"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@iconify/vue": "^5.0.0",
"@stylistic/stylelint-plugin": "^4.0.0",
"@types/codemirror": "^5.60.15",
"@types/cross-spawn": "^6.0.6",
"@types/crypto-js": "^4.2.2",
"@types/node": "^24.2.0",
"@types/nprogress": "^0.2.3",
"@types/postcss-import": "^14.0.3",
"@types/qs": "^6.14.0",
"@types/ws": "^8.18.1",
"@unocss/eslint-config": "^66.4.1",
"@vavt/v3-extension": "^4.0.0",
"@vitejs/plugin-vue": "^6.0.1",
"@vue/tsconfig": "^0.7.0",
"@xterm/xterm": "^5.5.0",
"axios": "^1.11.0",
"codemirror": "^5.65.16",
"codemirror-editor-vue3": "^2.4.1",
"cross-env": "^10.0.0",
"cross-spawn": "^7.0.6",
"crypto-js": "^4.2.0",
"electron": "^37.4.0",
"electron-builder": "^26.0.12",
"eslint": "^9.32.0",
"eslint-plugin-vue": "^10.4.0",
"form-data": "^4.0.4",
"iconv-lite": "^0.7.0",
"jsencrypt": "^3.5.4",
"md-editor-v3": "^6.0.1",
"npm-run-all": "^4.1.5",
"nprogress": "^0.2.0",
"postcss": "^8.5.6",
"postcss-html": "^1.8.0",
"postcss-import": "^16.1.1",
"postcss-nesting": "^13.0.2",
"qs": "^6.14.0",
"simple-git": "^3.28.0",
"simple-mind-map": "^0.14.0-fix.1",
"stylelint": "^16.23.0",
"stylelint-config-recommended-vue": "^1.6.1",
"stylelint-config-standard": "^39.0.0",
"systeminformation": "^5.27.11",
"tree-kill": "^1.2.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"unbuild": "^3.6.1",
"unocss": "^66.4.1",
"unplugin-auto-import": "^20.0.0",
"unplugin-vue-components": "^28.8.0",
"vite": "^7.0.4",
"vue-router": "^4.5.1",
"vue-tsc": "^2.2.12",
"ws": "^8.18.3",
"xterm-addon-fit": "^0.8.0"
}
}