forked from Deluze/electron-vue-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.59 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
{
"name": "electron-vue-template",
"version": "0.1.0",
"description": "A minimal Electron + Vue application",
"main": "build/main/main.js",
"scripts": {
"lint": "npx eslint src",
"lint:fix": "npm run lint -- --fix",
"prettier": "npx prettier src --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"dev": "node scripts/dev-server.js",
"build": "node scripts/build.js && electron-builder -c config/electron-builder.json",
"build:win": "node scripts/build.js && electron-builder -c config/electron-builder.json --win",
"build:mac": "node scripts/build.js && electron-builder -c config/electron-builder.json --mac",
"build:linux": "node scripts/build.js && electron-builder -c config/electron-builder.json --linux"
},
"repository": "https://github.com/deluze/electron-vue-template",
"author": {
"name": "Deluze",
"url": "https://github.com/Deluze"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.22.0",
"@typescript-eslint/parser": "^5.22.0",
"@vitejs/plugin-vue": "^2.2.4",
"@vue/cli": "^5.0.1",
"@vue/eslint-config-typescript": "^10.0.0",
"autoprefixer": "^10.4.7",
"chalk": "^4.1.2",
"chokidar": "^3.5.3",
"electron": "^17.1.0",
"electron-builder": "^22.14.13",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^8.7.1",
"postcss": "^8.4.13",
"prettier": "^2.6.2",
"tailwindcss": "^3.0.24",
"typescript": "^4.6.2",
"vite": "^2.8.6",
"vue-eslint-parser": "^8.3.0"
},
"dependencies": {
"vue": "^3.2.31"
}
}