-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 893 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 893 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
{
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@types/wicg-file-system-access": "^2023.10.7",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"typescript": "^5.9.3"
},
"lint-staged": {
"*.{ts,tsx}": "npx @biomejs/biome check --write"
},
"name": "utils-kit",
"private": true,
"scripts": {
"check": "npx @biomejs/biome check ./packages/**",
"check:write": "npx @biomejs/biome check --write ./packages/**",
"dev": "npm run -w apps/playground dev",
"typecheck:react-csv-autopilot": "tsc -p packages/react-csv-autopilot/tsconfig.json --noEmit",
"typecheck:react-url-query-params": "tsc -p packages/react-url-query-params/tsconfig.json --noEmit",
"prebuild": "npm run typecheck:react-csv-autopilot && npm run typecheck:react-url-query-params",
"prepare": "husky || true"
},
"workspaces": [
"packages/*",
"apps/*"
]
}