-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
34 lines (34 loc) · 1.17 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
33
34
{
"name": "root",
"private": true,
"author": "Protocol Labs, Inc.",
"license": "(Apache-2.0 AND MIT)",
"workspaces": [
"packages/*"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"fix": "biome check --fix --no-errors-on-unmatched --files-ignore-unknown=true",
"clean": "rm -rf docs node_modules pnpm-lock.yaml packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules,.wireit} examples/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules,.wireit}",
"build": "pnpm -r --if-present run build",
"lint": "pnpm -r --if-present run lint",
"test": "pnpm -r --if-present run test",
"docs": "typedoc --out docs --plugin typedoc-plugin-missing-exports --plugin typedoc-plugin-zod"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@hugomrdias/configs": "^0.1.9",
"depcheck": "^1.4.7",
"simple-git-hooks": "^2.10.0",
"typedoc": "^0.26.10",
"typedoc-plugin-missing-exports": "^3.0.0",
"typedoc-plugin-zod": "^1.2.1",
"typescript": "5.6.3",
"wireit": "^0.14.8"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec biome check --no-errors-on-unmatched --files-ignore-unknown=true --staged"
}
}