-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.55 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
{
"name": "ido",
"private": true,
"version": "1.0.5",
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build && electron-builder",
"preview": "vite preview",
"build:arm": "vue-tsc && vite build && electron-builder -m --arm64 -p always -c.artifactName='${productName}-${version}-mac-arm64.${ext}'",
"build:x86": "vue-tsc && vite build && electron-builder -m -p always -c.artifactName='${productName}-${version}-mac-x86.${ext}'"
},
"dependencies": {
"element-plus": "^2.3.6",
"vue": "^3.2.47"
},
"devDependencies": {
"@types/lodash": "^4.14.195",
"@vitejs/plugin-vue": "^4.1.0",
"electron": "^24.4.0",
"electron-builder": "^23.6.0",
"less": "^4.1.3",
"less-loader": "^11.1.3",
"lodash": "^4.17.21",
"typescript": "^5.0.2",
"unplugin-auto-import": "^0.16.4",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.3.9",
"vite-plugin-electron": "^0.11.2",
"vue-router": "4",
"vue-tsc": "^1.4.2"
},
"main": "dist-electron/main.js",
"build": {
"appId": "com.storyxc.app",
"productName": "iDo",
"artifactName": "${productName}-${version}.${ext}",
"files": [
"dist-electron/**/*",
"dist/**/*"
],
"asar": true,
"publish": [
{
"provider": "github",
"owner": "storyxc",
"repo": "iDo",
"releaseType": "release"
}
],
"mac": {
"icon": "./public/icon.icns",
"extendInfo": {
"LSUIElement": 1
},
"target": [
{
"target": "dmg"
}
]
}
}
}