forked from UltiRTS/PrometheSys.vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.88 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
{
"name": "electron-vue-template",
"version": "0.1.0",
"description": "A minimal Electron + Vue application",
"keywords": [
"electron",
"rollup",
"vite",
"vue",
"rts"
],
"author": {
"name": "UltiRTS"
},
"repository": "https://github.com/UltiRTS/PrometheSys.vue",
"main": "dist/main/index.cjs",
"scripts": {
"prebuild": "vue-tsc --noEmit --p packages/renderer/tsconfig.json && node scripts/build.mjs && sh scripts/merge_css.sh",
"build": "electron-builder",
"build:linux": "node scripts/build.mjs && electron-builder --linux",
"build:mac": "node scripts/build.mjs && electron-builder --mac",
"build:win": "node scripts/build.mjs &&sh scripts/merge_css.sh&& electron-builder --win",
"dev": "node scripts/watch.mjs",
"lint": "eslint ."
},
"engines": {
"node": ">=14.17.0"
},
"dependencies": {
"@babylonjs/core": "^5.19.0",
"axios": "^0.27.2",
"crypto": "^1.0.1",
"electron-store": "^8.1.0",
"md5-file": "^5.0.0",
"su-downloader3": "^1.1.1",
"two": "^1.0.1",
"two.js": "^0.8.9",
"vue": "^3.2.31",
"vue-router": "^4.0.14"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 3344
},
"devDependencies": {
"@antfu/eslint-config": "^0.21.0",
"@types/p5": "^1.4.2",
"@vitejs/plugin-vue": "^2.2.4",
"@vue/cli": "^5.0.1",
"@vueuse/core": "^8.3.1",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"consola": "^2.15.3",
"electron": "22.0.0",
"electron-builder": "^23.0.3",
"eslint": "^8.14.0",
"p5": "^1.5.0",
"pinia": "^2.0.13",
"pnpm": "^6.33.1",
"sass": "^1.51.0",
"typescript": "^4.6.2",
"unocss": "^0.33.2",
"unplugin-vue-components": "^0.19.3",
"vite": "^2.8.6",
"vite-plugin-electron": "^0.4.3",
"vite-plugin-pages": "^0.23.0",
"vite-plugin-resolve": "^2.0.7",
"vue-tsc": "^0.34.10"
}
}