This repository was archived by the owner on Apr 21, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.92 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.92 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
{
"name": "electron-vue-boilerplate",
"private": true,
"productName": "electron-vue-boilerplate",
"version": "1.0.0",
"description": "My Electron application description",
"main": "electron/electron.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"electron": "wait-on tcp:3000 && cross-env IS_DEV=true electron .",
"electron:pack": "electron-builder --dir",
"electron:dev": "concurrently -k \"cross-env BROWSER=none npm run dev\" \"npm run electron\"",
"electron:builder": "electron-builder",
"build:for:electron": "cross-env ELECTRON=true vite build",
"app:build": "npm run build:for:electron && npm run electron:builder",
"lint": "echo \"No linting configured\""
},
"keywords": [],
"author": {
"name": "André Kuhlmann",
"email": "akuhltime@gmail.com"
},
"license": "MIT",
"build": {
"appId": "me.kuhlti.electron-vue-boilerplate",
"productName": "Electron Vue Boilerplate",
"copyright": "Copyright © 2022 ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"dist/**/*",
"electron/**/*"
],
"directories": {
"buildResources": "assets",
"output": "dist_electron"
}
},
"dependencies": {
"electron-squirrel-startup": "^1.0.0",
"vue": "^3.2.32"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.3.1",
"autoprefixer": "^10.4.4",
"concurrently": "^7.1.0",
"cross-env": "^7.0.3",
"electron": "18.0.3",
"electron-builder": "^22.5.1",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-vue": "^8.6.0",
"postcss": "^8.4.12",
"prettier": "^2.6.2",
"sass": "^1.50.0",
"vite": "^2.9.1",
"wait-on": "^6.0.1"
},
"pnpm": {
"overrides": {
"async@<2.6.4": ">=2.6.4"
}
}
}