-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.61 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "echo",
"private": true,
"version": "2.2.0",
"main": "dist/main/index.js",
"scripts": {
"preview:render": "vite preview",
"dev": "concurrently \"npm run dev:render\" \"npm run dev:electron\"",
"dev:render": "vite",
"dev:electron": "npm run build:electron && electron .",
"build": "npm run build:render && npm run build:electron",
"build:render": "vue-tsc && vite build",
"build:electron": "tsc -p ./src/main",
"rebuild": "electron-rebuild -f -w better-sqlite3",
"release:win": "electron-builder --win",
"release:mac": "electron-builder --mac",
"release:linux": "electron-builder --linux"
},
"dependencies": {
"@imengyu/vue3-context-menu": "^1.4.1",
"adm-zip": "^0.5.14",
"ajv": "^6.12.6",
"archiver": "^7.0.1",
"better-sqlite3": "^11.0.0",
"element-plus": "^2.7.6",
"fs-extra": "^11.2.0",
"inversify": "^6.0.2",
"pinia": "^2.1.7",
"reflect-metadata": "^0.2.2",
"rimraf": "^5.0.7",
"segment": "^0.1.3",
"sharp": "^0.33.4",
"v-viewer": "^3.0.13",
"vue": "^3.4.21",
"vue-i18n": "^9.13.1",
"vue-router": "^4.4.0",
"vue3-carousel": "^0.3.3",
"vuedraggable": "^4.1.0"
},
"devDependencies": {
"@electron/rebuild": "^3.6.0",
"@types/adm-zip": "^0.5.5",
"@types/archiver": "^6.0.2",
"@types/better-sqlite3": "^7.6.10",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.14.5",
"@types/sharp": "^0.32.0",
"@vitejs/plugin-vue": "^5.0.4",
"concurrently": "^8.2.2",
"electron": "^30.1.0",
"electron-builder": "^24.13.3",
"typescript": "^5.2.2",
"vite": "^5.2.0",
"vue-tsc": "^2.0.6"
},
"author": {
"email": "Sorceresssis@gmail.com",
"name": "Sorceress"
},
"build": {
"appId": "com.sorceress.echo",
"productName": "Echo",
"copyright": "Copyright © 2024 Sorceress. All rights reserved",
"directories": {
"output": "release/${version}"
},
"files": [
"dist"
],
"asar": true,
"win": {
"icon": "build/icon_256x256.ico",
"artifactName": "${productName}_${version}.${ext}",
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"perMachine": false,
"deleteAppDataOnUninstall": false
},
"mac": {
"icon": "build/icon_512x512.ico",
"target": "dmg",
"category": "public.app-category.utilities"
},
"dmg": {
"contents": [
{
"x": 110,
"y": 150
},
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
}
]
},
"linux": {
"icon": "build/icon_256x256.ico",
"target": "deb",
"category": "Utility"
},
"publish": [
{
"provider": "github",
"owner": "Sorceresssis",
"repo": "Echo",
"releaseType": "draft"
}
]
}
}