generated from fission-codes/js-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.22 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
35
36
37
38
{
"name": "filecoin-monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"format": "biome check --write --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} packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules}",
"lint": "pnpm -r --if-present run lint",
"test": "pnpm -r --if-present run test",
"check": "pnpm -r --if-present run check",
"build": "pnpm -r --if-present run build",
"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",
"lint-staged": "^15.4.1",
"simple-git-hooks": "^2.11.1",
"typedoc": "^0.27.6",
"typedoc-plugin-missing-exports": "^3.1.0",
"typedoc-plugin-zod": "^1.3.1",
"typescript": "5.7.3"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*": "biome check --no-errors-on-unmatched --files-ignore-unknown=true"
}
}