-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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
71
72
73
74
{
"name": "scoi",
"version": "0.4.4",
"private": true,
"author": "ahibis<[email protected]>",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:electron": " cross-env ELECTRON=true vite build",
"electron": "yarn build:electron &&cross-env IS_DEV=true electron .",
"electron:builder": "electron-builder",
"app:build": "yarn build:electron && yarn electron:builder",
"electron:dev": "concurrently -k \" yarn dev\" \"cross-env IS_DEV=true server=true electron .\"",
"build:docs": "cross-env DOCS=true vite build"
},
"main": "main.js",
"dependencies": {
"@mdi/font": "5.9.55",
"@mdi/js": "^6.6.96",
"@vuetify/vite-plugin": "^1.0.0-alpha.10",
"bootstrap": "^5.1.3",
"chart.js": "^3.7.1",
"pinia": "^2.0.14",
"roboto-fontface": "*",
"rxjs": "^7.5.5",
"vue": "^3.2.25",
"vue-chartjs": "^4.0.6",
"vue-localstorage": "^0.6.2",
"vue-winbox": "^0.0.3",
"vuetify": "npm:@vuetify/nightly@next",
"webfontloader": "^1.0.0"
},
"devDependencies": {
"@vitejs/plugin-vue": "^2.2.0",
"@vuetify/vite-plugin": "^1.0.0-alpha.0",
"concurrently": "^7.0.0",
"cross-env": "^7.0.3",
"electron": "^17.2.0",
"electron-builder": "^22.14.13",
"electron-devtools-installer": "^3.2.0",
"sass": "^1.49.9",
"sass-loader": "^10.0.0",
"vite": "^2.8.0",
"vue-cli-plugin-electron-builder": "^2.1.1",
"vue-cli-plugin-vuetify": "~2.4.8",
"vue-devtools": "^5.1.4",
"vuetify-loader": "^2.0.0-alpha.0"
},
"build": {
"appId": "BrushGnome.myapp.ahibis",
"productName": "BrushGnome",
"copyright": "Copyright © 2021 ${author}",
"mac": {
"category": "public.app-category.utilities"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"dist/**/*",
"electron/**/*",
"main.js",
"package.json"
],
"win": {
"icon": "./public/favicon.ico"
},
"directories": {
"buildResources": "assets",
"output": "dist_electron"
}
}
}