-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "chryusb_configurator",
"version": "1.0.0",
"main": "dist/main/index.cjs",
"author": "Egahp <2687434412@qq.com>",
"license": "MIT",
"scripts": {
"dev": "node scripts/watch.mjs",
"prebuild": "vue-tsc --noEmit --p packages/renderer/tsconfig.json && node scripts/build.mjs",
"build": "electron-builder",
"init": "git config core.hooksPath .git/hooks/ && rm -rf .git/hooks && npx simple-git-hooks",
"test:e2e": "npx playwright test",
"test:e2e:headless": "npx playwright test --headed"
},
"engines": {
"node": ">=14.17.0"
},
"devDependencies": {
"@playwright/test": "^1.19.2",
"@types/sqlite3": "^3.1.8",
"@vitejs/plugin-vue": "^2.1.0",
"electron": "16.0.8",
"electron-builder": "^22.14.5",
"nano-staged": "^0.6.0",
"simple-git-hooks": "^2.7.0",
"typescript": "^4.5.5",
"vite": "^2.7.13",
"vite-plugin-resolve": "^1.8.0",
"vue": "^3.2.29",
"vue-tsc": "^0.31.1"
},
"env": {
"VITE_DEV_SERVER_HOST": "127.0.0.1",
"VITE_DEV_SERVER_PORT": 3344
},
"keywords": [
"vite",
"electron",
"vue3",
"rollup",
"element-plus"
],
"dependencies": {
"@mdi/font": "^6.5.95",
"animate.css": "^4.1.1",
"axios": "^0.26.1",
"element-plus": "^2.1.5",
"jsonc-parser": "^3.0.0",
"sqlite3": "^5.0.2",
"vue-i18n": "^9.1.9",
"vue-router": "^4.0.14"
}
}