-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 1.11 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
{
"name": "mono",
"private": true,
"devDependencies": {
"@biomejs/biome": "1.9.0",
"@happy-dom/global-registrator": "15.7.3",
"@types/bun": "1.1.9",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"patch-package": "8.0.0"
},
"engines": {
"node": ">=20.6.0"
},
"scripts": {
"//lint": "No monorepo support yet so just use from root https://github.com/biomejs/biome/issues/2228",
"lint": "bunx @biomejs/biome check --vcs-use-ignore-file true --write .",
"//postinstall": "--error-on-fail is on by default in CI but some patched packages aren't present in mirrored repos causing failure",
"postinstall": "patch-package",
"prepare": "husky"
},
"trustedDependencies": ["@biomejs/biome", "esbuild", "ngrok", "workerd"],
"workspaces": ["apps/*", "packages/*"],
"packageManager": "[email protected]",
"//lint-staged": "Able to not pass files as args https://github.com/lint-staged/lint-staged/issues/174#issuecomment-437468837",
"lint-staged": {
"*.{js,ts,cjs,mjs,d.cts,d.mts,jsx,tsx,json,jsonc,css}": [
"biome check --write --no-errors-on-unmatched"
],
"**/*.ts?(x)": ["bun --filter '*' check && :"]
}
}