-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.42 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": "emulator-runner",
"version": "1.0.0",
"productName": "Emulator Runner",
"description": "Emulator Runner",
"main": "dist-electron/main/index.js",
"author": {
"name": "XRSec",
"email": "jalapeno1868@outlook.com"
},
"license": "MIT",
"private": true,
"keywords": [
"emulator",
"android",
"manage"
],
"debug": {
"env": {
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344/"
}
},
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder",
"preview": "vite preview",
"GenerateConfig": "tsc cli/GenerateConfig.ts && node cli/GenerateConfig.js && rm cli/GenerateConfig.js",
"test": "tsc test.ts && node test.js && rm test.js",
"deployApp": "bash cli/deploy.sh"
},
"devDependencies": {
"@types/i18n": "^0.13.10",
"@types/node": "^22.5.1",
"@types/vue-router": "^2.0.0",
"@vitejs/plugin-vue": "^5.0.2",
"electron": "^32.0.1",
"electron-builder": "^24.9.1",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vite-plugin-electron": "^0.28.2",
"vite-plugin-electron-renderer": "^0.14.5",
"vue": "^3.3.11",
"vue-tsc": "^2.0.16"
},
"dependencies": {
"electron-builder-squirrel-windows": "^25.0.5",
"i18n": "^0.15.1",
"json5": "^2.2.3",
"vue-router": "^4.2.5",
"vue-toastification": "^2.0.0-rc.5",
"xml-js": "^1.6.11",
"yaml": "^2.3.4"
}
}