-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
84 lines (84 loc) · 2.62 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
75
76
77
78
79
80
81
82
83
84
{
"name": "electron-kiosk",
"version": "0.10.0",
"private": false,
"description": "Electron Kiosk",
"main": "./out/main/index.js",
"author": "Innovation-System s.r.l <[email protected]>",
"scripts": {
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "electron-vite build",
"lint": "eslint --ext .js,.ts,.vue .",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"changelog-init": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"icons": "electron-icon-builder -f --input=./docs/logo.png --output=./build && cp ./build/icons/1024x1024.png ./build/icons/icon.png",
"lint-fix": "eslint --fix --ext .js,.ts,.vue .",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"build:win": "npm run build && electron-builder --win --config --publish never",
"build:mac": "npm run build && electron-builder --mac --config --publish never",
"build:linux": "npm run build && electron-builder --linux --config --publish never ",
"build:arm64": "npm run build && electron-builder --linux --arm64 --config --publish never ",
"release": "read -p 'GITHUB_TOKEN: ' GITHUB_TOKEN && export GITHUB_TOKEN=$GITHUB_TOKEN && release-it"
},
"dependencies": {
"@electron-toolkit/utils": "^3.0.0",
"electron-store": "^8.1.0",
"parse-duration": "^2.1.3",
"remove": "^0.1.5"
},
"devDependencies": {
"@release-it/conventional-changelog": "^8.0.1",
"@vitejs/plugin-vue": "^5.0.3",
"@vue/eslint-config-airbnb": "^8.0.0",
"conventional-changelog-cli": "^4.1.0",
"electron": "^28.1.3",
"electron-builder": "^24.9.1",
"electron-devtools-installer": "^3.2.0",
"electron-icon-builder": "^2.0.1",
"electron-vite": "^2.0.0",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-vue": "^9.20.1",
"eslint-plugin-vuetify": "^2.1.1",
"material-design-icons-iconfont": "^6.7.0",
"prettier": "^3.2.2",
"release-it": "^17.0.1",
"vite": "^5.0.11",
"vite-plugin-vuetify": "^2.0.1",
"vue": "^3.4.14",
"vuetify": "^3.4.10"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not dead"
],
"release-it": {
"github": {
"release": true
},
"git": {
"tagName": "v${version}",
"commitMessage": "chore: release v${version}"
},
"hooks": {
"before:init": [
"npm run lint"
]
},
"npm": {
"publish": false
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular",
"infile": "CHANGELOG.md"
}
}
}
}