forked from ArcherGu/fast-vite-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.43 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
{
"name": "fast-vite-electron",
"version": "0.0.1",
"packageManager": "[email protected]",
"description": "Vite + Electron with esbuild, so fast! ⚡",
"main": "dist/main/index.js",
"scripts": {
"dev": "rimraf dist && vite",
"build": "rimraf dist && vite build",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "npm run test:main && npm run test:render",
"test:render": "vitest run -r src/render --passWithNoTests",
"test:main": "vitest run -r src/main --passWithNoTests",
"test:e2e": "vitest run",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps"
},
"dependencies": {
"einf": "^1.3.0",
"vue": "^3.2.45"
},
"devDependencies": {
"@lightwing/eslint-config": "0.0.9",
"@vitejs/plugin-vue": "4.0.0",
"@vue/compiler-sfc": "3.2.45",
"@vue/test-utils": "2.2.7",
"electron": "22.0.3",
"electron-builder": "23.6.0",
"eslint": "8.32.0",
"happy-dom": "8.1.4",
"lint-staged": "13.1.0",
"playwright": "1.29.2",
"pnpm": "7.25.1",
"rimraf": "4.1.1",
"simple-git-hooks": "2.8.1",
"tslib": "2.4.1",
"typescript": "4.9.4",
"vite": "4.0.4",
"vite-plugin-doubleshot": "0.0.8",
"vitest": "0.27.2",
"vue-tsc": "1.0.24"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}