-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.72 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.72 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
{
"name": "BenthicGermplasm",
"version": "0.0.0",
"author": "Benben Miao",
"license": "MIT",
"type": "commonjs",
"main": "electron/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs --fix --ignore-path .gitignore",
"electron": "wait-on tcp:3000 && cross-env NODE_ENV=development electron .",
"electron:serve": "concurrently -k \"npm run dev\" \"npm run electron\"",
"electron:build": "vite build && electron-builder"
},
"dependencies": {
"@aximario/json-tree": "^2.2.4",
"@element-plus/icons-vue": "^2.0.10",
"@splinetool/runtime": "^0.9.143",
"axios": "^1.1.3",
"echarts": "^5.4.0",
"element-plus": "^2.2.20",
"lodash": "^4.17.21",
"ol": "^7.1.0",
"vue": "^3.2.38",
"vue-router": "^4.1.5"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.1.4",
"@vitejs/plugin-vue": "^3.0.3",
"@vue/eslint-config-prettier": "^7.0.0",
"concurrently": "^7.6.0",
"cross-env": "^7.0.3",
"electron": "^21.3.1",
"electron-builder": "^23.6.0",
"eslint": "^8.22.0",
"eslint-plugin-vue": "^9.3.0",
"nodemon": "^2.0.20",
"prettier": "^2.7.1",
"serve": "^14.1.2",
"vite": "^3.0.9",
"wait-on": "^6.0.1"
},
"build": {
"appId": "com.benbenmiao.app",
"productName": "MyApp",
"copyright": "Copyright © benben-miao",
"mac": {
"category": "public.app-category.utilities"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"buildResources": "assets",
"output": "dist_electron"
}
}
}