-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.09 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
{
"name": "electron-esm-vite",
"version": "0.0.0",
"description": "Vite + Electron + ESM project template",
"productName": "Electron ESM Vite",
"main": "./out/main.js",
"type": "module",
"scripts": {
"dev": "npm run build && concurrently \"vite serve .\" \"electron .\" \"node ./cli.js\"",
"build": "vite build && tsc",
"preview": "vite preview",
"test": "vitest",
"electron": "electron .",
"package:mac": "npm run build && electron-builder --mac --universal",
"package:windows": "npm run build && electron-builder --windows",
"package:linux": "npm run build && electron-builder --linux",
"eslint": "eslint .",
"eslint:fix": "eslint . --fix"
},
"author": "username",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"concurrently": "^8.2.2",
"chokidar": "^3.5.3",
"electron": "^28.0.0",
"electron-builder": "^24.9.1",
"eslint": "^8.55.0",
"typescript": "^5.3.3",
"vite": "^5.0.8",
"vitest": "^1.0.4"
}
}