-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 945 Bytes
/
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": "envm",
"private": true,
"version": "0.0.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"postinstall": "simple-git-hooks",
"dev": "vite",
"build": "vue-tsc && vite build && electron-builder",
"preview": "vite preview"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged && pnpm check"
},
"lint-staged": {
"*.{vue,js,cjs,mjs,ts,jsx,tsx,md,json,css,scss,html}": [
"prettier --write"
]
},
"dependencies": {
"sass": "^1.66.1",
"vue": "^3.3.4"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.3.4",
"electron": "^26.2.0",
"electron-builder": "^24.6.4",
"lint-staged": "^14.0.1",
"prettier": "^3.0.3",
"simple-git-hooks": "^2.9.0",
"typescript": "^5.2.2",
"vite": "^4.4.9",
"vite-plugin-electron": "^0.14.0",
"vite-plugin-electron-renderer": "^0.14.5",
"vue-tsc": "^1.8.8"
},
"main": "dist-electron/main.js"
}