-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.87 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.87 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
{
"name": "sunshine-gui",
"version": "0.0.0-dev",
"description": "A GUI for sunshine",
"type": "module",
"scripts": {
"dev": "tauri dev",
"dev-webui": "cross-env WEBUI_DEV_TARGET=https://localhost:3000 tauri dev",
"dev:toolbar": "npm run build:renderer && cargo build --manifest-path src-tauri/Cargo.toml && src-tauri\\target\\debug\\sunshine-gui.exe --toolbar",
"dev:renderer": "vite --config vite.config.js",
"build": "tauri build",
"build:renderer": "vite build --config vite.config.js",
"build:home": "vite build --config vite.home.config.js --mode production",
"dev:home": "vite --config vite.home.config.js --mode development",
"preview:home": "vite preview --config vite.home.config.js",
"build:win": "npm run build:renderer && tauri build --target x86_64-pc-windows-msvc --bundles nsis",
"build:overlay:win": "powershell -ExecutionPolicy Bypass -File ./scripts/build-gui-overlay-installer.ps1",
"build:beta": "cross-env BETA=true npm run build:renderer && tauri build --features beta",
"build:beta:win": "cross-env BETA=true npm run build:renderer && tauri build --features beta --target x86_64-pc-windows-msvc --bundles nsis"
},
"repository": "https://github.com/qiin2333/sunshine",
"author": {
"name": "qiin2333",
"url": "https://github.com/qiin2333"
},
"devDependencies": {
"@tauri-apps/cli": "^2.11.0",
"@vitejs/plugin-vue": "^6.0.4",
"cross-env": "^7.0.3",
"esbuild": "*",
"less": "^4.2.2",
"vite": "^8.0.8"
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"@tauri-apps/api": "^2.11.0",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-fs": "^2.5.0",
"@tauri-apps/plugin-shell": "^2.3.5",
"element-plus": "^2.11.9",
"markdown-it": "^14.1.0",
"pixi.js": "^8.6.6",
"qrcode": "^1.5.4",
"vue": "^3.5.4",
"vue-i18n": "^11.2.2"
}
}