-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.73 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": "photolisting",
"version": "0.2.3",
"main": "main.js",
"scripts": {
"vite-dev": "cross-env NODE_ENV=dev vite",
"build": "cross-env NODE_ENV=production vite build",
"github:build": "cross-env NODE_ENV=github vite build --mode github",
"serve": "vite preview",
"electron:serve": "cross-env NODE_ENV=dev electron .",
"pack": "electron-builder --dir",
"pack-dist": "electron-builder",
"full-build": "npm-run-all -s build pack-dist",
"github-full-build": "npm-run-all -s github:build pack-dist",
"dev": "npm-run-all -p vite-dev electron:serve"
},
"dependencies": {
"axios": "^1.4.0",
"exifr": "^7.1.3",
"get-file-object-from-local-path": "^1.0.2",
"vue": "^3.2.25"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.0.0",
"cross-env": "^7.0.3",
"electron": "^16.0.1",
"electron-builder": "^22.14.13",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.5",
"vitawind": "^2.0.0",
"vite": "^2.7.2",
"npm-run-all": "^4.1.5"
},
"build": {
"appId": "com.huibizhang.photolisting",
"productName": "Photolisting",
"directories": {
"output": "pack",
"buildResources": "public"
},
"files": [
"dist/**/*",
"assets/",
"main.js",
"preload.js",
"build/**/*"
],
"asar": false,
"win": {
"target": "NSIS",
"icon": "public/icon.ico"
},
"mac": {
"icon": "assets/icon.ico"
},
"linux": {
"icon": "assets/icon.ico"
},
"publish": {
"provider": "github",
"repo": "photolisting",
"owner": "huibizhang",
"releaseType": "release"
},
"nsis": {
"allowElevation": true,
"include": "build/installer.nsh"
}
}
}