-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.47 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": "pnpm@9.12.3",
"description": "Vite + Electron with esbuild, so fast! ⚡",
"main": "dist/main/index.js",
"scripts": {
"dev": "rimraf dist && vite",
"debug": "rimraf dist && vite -- --dsb-debug",
"build": "rimraf dist && vue-tsc && 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.5.3",
"vue": "^3.4.31"
},
"devDependencies": {
"@lightwing/eslint-config": "1.0.78",
"@vitejs/plugin-vue": "5.1.4",
"@vue/compiler-sfc": "3.5.12",
"@vue/test-utils": "2.4.6",
"electron": "33.1.0",
"electron-builder": "25.1.8",
"eslint": "9.14.0",
"happy-dom": "15.10.1",
"lint-staged": "15.2.10",
"playwright": "1.48.2",
"rimraf": "6.0.1",
"simple-git-hooks": "2.11.1",
"tslib": "2.8.1",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-doubleshot": "0.0.17",
"vitest": "2.1.4",
"vue-tsc": "2.1.10"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,tsx,vue,md,json,yml}": [
"eslint --fix"
]
}
}