-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
39 lines (39 loc) · 1000 Bytes
/
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
{
"name": "electron-esbuild-monorepo",
"version": "8.0.0",
"description": "Use esbuild/vite with Electron for blazing fast compilation",
"repository": "https://github.com/Kiyozz/electron-esbuild",
"author": {
"name": "Kévin TURMEL",
"email": "[email protected]",
"url": "https://github.com/Kiyozz"
},
"private": true,
"engines": {
"node": ">=14.18",
"pnpm": "8"
},
"scripts": {
"prepare": "husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "8.0.3",
"lint-staged": "^13.2.3",
"prettier": "^3.0.0",
"typescript": "~5.4.5"
},
"lint-staged": {
"*.{md,json,yml}": [
"prettier --write"
],
"!(templates|dist)/*.{mts,mjs,ts,js}": [
"eslint --fix --max-warnings=0"
]
}
}