-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.26 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
{
"name": "starter-electron-app",
"productName": "Starter Electron App",
"version": "0.0.0",
"packageManager": "[email protected]",
"description": "starter-electron-app",
"author": "Brendan Dash <[email protected]> (https://aiwan.run/)",
"license": "MIT",
"keywords": [],
"main": "dist/main/index.js",
"scripts": {
"dev": "tsx scripts/dev.mts",
"build": "turbo build",
"package": "tsx scripts/package.mts",
"make": "tsx scripts/make.mts",
"lint": "turbo lint",
"typecheck": "turbo typecheck",
"prepare": "simple-git-hooks"
},
"devDependencies": {
"@debbl/eslint-config": "^3.8.10",
"@electron-forge/cli": "^7.6.1",
"@electron-forge/maker-dmg": "^7.6.1",
"@electron-forge/maker-squirrel": "^7.6.1",
"@electron-forge/maker-zip": "^7.6.1",
"@electron-forge/shared-types": "^7.6.1",
"@types/node": "^22.13.1",
"chalk": "^5.4.1",
"chokidar": "^4.0.3",
"electron": "^34.0.2",
"eslint": "^9.19.0",
"execa": "^9.5.2",
"get-port-please": "^3.1.2",
"lint-staged": "^15.4.3",
"simple-git-hooks": "^2.11.1",
"tsx": "^4.19.2",
"turbo": "^2.4.0",
"typescript": "^5.7.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*": "eslint --fix"
}
}