-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.1 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
{
"name": "jurkovic-app",
"version": "0.1.0",
"description": "A minimal Electron + Vue application",
"main": "build/main/main.js",
"scripts": {
"dev": "node scripts/dev-server.js",
"build": "node scripts/build.js && electron-builder",
"build:win": "node scripts/build.js && electron-builder --win",
"build:mac": "node scripts/build.js && electron-builder --mac",
"build:linux": "node scripts/build.js && electron-builder --linux"
},
"repository": "https://github.com/deluze/electron-vue-template",
"author": {
"name": "Deluze",
"url": "https://github.com/Deluze"
},
"devDependencies": {
"@types/lodash": "^4.14.196",
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.14",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"electron": "^25.2.0",
"electron-builder": "^24.2.1",
"postcss": "^8.4.26",
"tailwindcss": "^3.3.3",
"typescript": "^4.8.4",
"vite": "^4.1.1"
},
"dependencies": {
"lodash": "^4.17.21",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-plugin-load-script": "^2.1.1",
"vue-router": "^4.2.4"
}
}