-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.36 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
{
"name": "electron-vue-vite",
"version": "2.0.0",
"main": "dist/electron/main/index.js",
"license": "MIT",
"private": true,
"scripts": {
"dev": "vite",
"build": "vue-tsc --noEmit && vite build && electron-builder"
},
"engines": {
"node": "^14.18.0 || >=16.0.0"
},
"dependencies": {
"electron": "^20.0.2",
"vue": "^3.2.37",
"vue-router": "^4.1.5",
"vuex": "^4.0.2",
"@vitejs/plugin-vue": "^3.0.1",
"vite": "^3.0.8",
"vite-plugin-electron": "^0.9.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.0",
"@typescript-eslint/parser": "^5.36.0",
"@vue/eslint-config-prettier": "^7.0.0",
"autoprefixer": "^10.4.8",
"axios": "^0.27.2",
"electron-builder": "^23.3.3",
"eslint": "^8.23.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-vue": "^9.4.0",
"postcss": "^8.4.16",
"prettier": "^2.5.1",
"prettier-plugin-tailwindcss": "^0.1.4",
"tailwindcss": "^3.1.8",
"typescript": "^4.7.4",
"vue-tsc": "^0.40.1"
},
"debug": {
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 3344,
"VITE_DEV_SERVER_URL": "http://127.0.0.1:3344"
}
},
"keywords": [
"electron",
"rollup",
"vite",
"vue3",
"vue"
]
}