generated from cawa-93/vite-electron-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.95 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
{
"name": "markvue",
"private": true,
"engines": {
"node": ">=v16.13",
"npm": ">=8.1"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build --config electron-builder.config.js --dir --config.asar=false",
"pretest": "npm run build",
"test": "node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue",
"typecheck-main": "tsc --noEmit -p packages/main/tsconfig.json",
"typecheck-preload": "tsc --noEmit -p packages/preload/tsconfig.json",
"typecheck-renderer": "vue-tsc --noEmit -p packages/renderer/tsconfig.json",
"typecheck": "npm run typecheck-main && npm run typecheck-preload && npm run typecheck-renderer"
},
"browserslist": [
"Chrome 94"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"pre-push": "npm run typecheck"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix"
},
"devDependencies": {
"@tailwindcss/typography": "^0.4.1",
"@types/electron-devtools-installer": "2.2.0",
"@typescript-eslint/eslint-plugin": "5.2.0",
"@vitejs/plugin-vue": "1.9.4",
"autoprefixer": "^10.4.0",
"cross-env": "7.0.3",
"electron": "15.3.0",
"electron-builder": "22.13.1",
"electron-builder-notarize": "^1.2.0",
"electron-devtools-installer": "3.2.0",
"eslint": "8.1.0",
"eslint-plugin-vue": "8.0.2",
"lint-staged": "11.2.6",
"playwright": "1.16.2",
"postcss": "^8.3.11",
"sass": "^1.43.4",
"simple-git-hooks": "2.7.0",
"tailwindcss": "^2.2.19",
"typescript": "4.4.4",
"vite": "2.6.13",
"vue-tsc": "0.28.10"
},
"dependencies": {
"@types/splitpanes": "^2.2.1",
"brace": "^0.11.1",
"electron-updater": "4.6.1",
"splitpanes": "^3.0.6",
"vite-plugin-wasm-pack": "^0.1.8",
"vue": "3.2.20",
"vue-router": "4.0.12"
}
}