-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
93 lines (93 loc) · 3.35 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "billd-desk",
"version": "0.1.46",
"description": "基于Vue3 + WebRTC + Electron + Nodejs搭建的远程桌面",
"keywords": [
"billd",
"remote-desk",
"webrtc",
"rustdesk",
"todesk",
"向日葵"
],
"homepage": "https://desk.hsslive.cn",
"bugs": {
"url": "https://github.com/galaxy-s10/billd-desk/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/galaxy-s10/billd-desk"
},
"license": "MIT",
"author": "shuisheng <[email protected]>",
"type": "module",
"main": "electron-dist/index.cjs",
"scripts": {
"build:beta": "cross-env VITE_APP_RELEASE_PROJECT_ISWEB=true vite build",
"build:deb": "standard-version && vite build && electron-builder --linux deb",
"build:ele": "standard-version && vite build && electron-builder --mac --win --linux",
"build:linux": "standard-version && vite build && electron-builder --linux",
"build:mac": "standard-version && vite build && electron-builder --mac",
"build:mw": "standard-version && vite build && electron-builder --mac --win",
"build:prod": "cross-env VITE_APP_RELEASE_PROJECT_ISWEB=true vite build",
"build:win": "standard-version && vite build && electron-builder --win",
"copy": "ts-node ./deploy/handleGiteeJenkins.mjs",
"cz": "cz",
"deploy:beta": "node ./deploy/index.cjs --beta",
"deploy:prod": "node ./deploy/index.cjs --prod",
"dev": "rimraf electron-dist dist && vite",
"gen-icons": "rimraf build/output/ && electron-icon-builder --input=./build/source/billd.png --output=./build/output/ --flatten",
"lint": "eslint . --config ./eslint.config.js --cache",
"lint:fix": "eslint . --config ./eslint.config.js --cache --fix",
"preview": "vite preview",
"release": "standard-version",
"sync-repo": "ts-node ./deploy/handleSyncPublic.mjs"
},
"config": {},
"dependencies": {},
"devDependencies": {
"@electron-toolkit/preload": "^3.0.0",
"@electron/rebuild": "^3.7.1",
"@eslint/js": "^9.10.0",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitejs/plugin-legacy": "^5.3.1",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/eslint-config-prettier": "^8.0.0",
"@vue/eslint-config-typescript": "^11.0.3",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"electron": "^33.2.1",
"electron-builder": "^24.12.0",
"electron-icon-builder": "^2.0.1",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.1.0",
"eslint-define-config": "^2.1.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-vue": "^9.28.0",
"node-abi": "^3.71.0",
"postcss-preset-env": "^10.1.2",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"sass": "^1.63.6",
"standard-version": "^9.5.0",
"trash": "^8.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.6.2",
"unplugin-auto-import": "^0.17.6",
"unplugin-vue-components": "^0.25.1",
"vite": "^6.0.3",
"vite-plugin-checker": "^0.8.0",
"vite-plugin-commonjs": "^0.10.1",
"vite-plugin-electron": "^0.28.2",
"vite-plugin-electron-renderer": "^0.14.5",
"vite-plugin-eslint2": "^5.0.3",
"vite-plugin-html": "^3.2.2",
"vue-eslint-parser": "^9.4.3",
"vue-tsc": "^2.1.10"
},
"productName": "BilldDesk"
}