-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.86 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
{
"name": "@mburchard/vite-electron-starter",
"type": "module",
"version": "0.1.0",
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0",
"description": "Starter template for fast and efficient Electron development using Vite and TypeScript",
"author": {
"name": "Martin Burchard",
"email": "[email protected]",
"url": "https://github.com/MBurchard/vite-electron-starter"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MBurchard/vite-electron-starter"
},
"main": "dist-electron/main.js",
"engines": {
"node": ">=22",
"pnpm": ">=9",
"npm": ">=11"
},
"scripts": {
"dev": "vite",
"typecheck:app": "tsc --project tsconfig.app.json",
"typecheck:electron": "tsc --project tsconfig.node.json",
"typecheck": "run-p typecheck:app typecheck:electron",
"build-only": "vite build",
"build": "run-s typecheck build-only",
"preview": "electron .",
"dist": "electron-builder --config electron-builder.config.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"fix-electron": "cd node_modules/electron && rm -rf dist && pnpm run postinstall"
},
"dependencies": {
"@mburchard/bit-log": "^0.7.0",
"source-map-support": "^0.5.21",
"uuid": "^11.0.5"
},
"devDependencies": {
"@antfu/eslint-config": "^4.1.1",
"@tsconfig/node22": "^22.0.0",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.13.0",
"electron": "^34.0.2",
"electron-builder": "26.0.0-alpha.9",
"eslint": "^9.19.0",
"glob": "^11.0.1",
"npm-run-all2": "^7.0.2",
"typescript": "~5.7.3",
"vite": "^6.0.11",
"vitest": "^3.0.5"
},
"overrides": {
"dmg-builder": "26.0.0-alpha.9",
"electron-builder-squirrel-windows": "26.0.0-alpha.9"
}
}