-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.69 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.69 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
66
67
68
69
70
71
72
{
"name": "zenit",
"version": "1.0.1",
"description": "Showcase App for POS Laptops",
"author": "Zenit",
"main": "main.js",
"scripts": {
"dev": "vite",
"start": "electron .",
"dev:all": "concurrently \"npm run dev\" \"wait-on http://localhost:5173 && npm run start\"",
"build:renderer": "vite build",
"build": "npm run build:renderer && electron-builder --win --x64 --dir",
"dist": "npm run build:renderer && electron-builder --win --x64"
},
"build": {
"appId": "com.zenit.app",
"productName": "Zenit",
"publish": {
"provider": "github",
"owner": "Rouchant",
"repo": "Zenit"
},
"directories": {
"output": "dist"
},
"files": [
"**/*",
"!dist/*",
"!node_modules/*",
"dist_app/**"
],
"extraResources": [
"get-specs.ps1",
"setup-autostart.ps1",
"system-setup.ps1",
"assets/**"
],
"win": {
"target": [
"nsis"
],
"icon": "public/assets/logo.ico"
},
"nsis": {
"oneClick": false,
"perMachine": true,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"include": "build/installer.nsh"
}
},
"keywords": [],
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"concurrently": "^9.1.2",
"electron": "^41.0.3",
"electron-builder": "^26.8.1",
"electron-packager": "^17.1.2",
"vite": "^8.0.2",
"wait-on": "^8.0.2"
},
"dependencies": {
"@vitejs/plugin-vue": "^6.0.5",
"electron-is-dev": "^3.0.1",
"electron-updater": "^6.8.3",
"pinia": "^3.0.4",
"vue": "^3.5.32"
}
}