-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 861 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 861 Bytes
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
{
"name": "bilireveal",
"type": "module",
"version": "1.6.12",
"private": true,
"scripts": {
"dev": "vite",
"build": "pnpm build:normal && pnpm build:firemonkey",
"build:normal": "tsc && vite build",
"build:firemonkey": "LITE_VERSION=true vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit",
"lint": "biome check",
"lint:fix": "biome check --write ."
},
"simple-git-hooks": {
"pre-commit": "pnpx nano-staged"
},
"nano-staged": {
"*": "biome check --no-errors-on-unmatched --files-ignore-unknown=true"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@maxchang/biome-config": "^0.1.7",
"@types/node": "^25.0.3",
"nano-staged": "^0.9.0",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"vite": "^7.3.0",
"vite-plugin-monkey": "^7.1.9"
}
}