-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 877 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
{
"scripts": {
"bump": "taze -l",
"prepare": "simple-git-hooks",
"build": "pnpm run build:plugin && pnpm run build:template",
"build:plugin": "pnpm run --filter=electron-forge-plugin-rsbuild build",
"build:template": "pnpm run --filter=electron-forge-template-rsbuild build",
"changeset": "changeset",
"version": "changeset version"
},
"devDependencies": {
"@biomejs/biome": "^1.9.2",
"@changesets/cli": "^2.27.8",
"@types/node": "^22.5.5",
"lint-staged": "^15.2.10",
"pnpm": "^9.10.0",
"simple-git-hooks": "^2.11.1",
"taze": "^0.16.9",
"typescript": "^5.6.2"
},
"engines": {
"node": ">= 16.4.0"
},
"publishConfig": {
"access": "public"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged"
},
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc}": [
"biome check --write --no-errors-on-unmatched"
]
}
}