generated from fission-codes/js-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.43 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
39
40
41
42
43
44
45
46
47
48
{
"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 node_modules pnpm-lock.yaml packages/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules} examples/*/{pnpm-lock.yaml,coverage,.nyc_output,dist,node_modules,.wireit} website/*/{pnpm-lock.yaml,.astro,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": "pnpm -r --filter docs run build"
},
"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.7",
"typedoc-plugin-markdown": "^4.4.2",
"typedoc-plugin-mdn-links": "^4.0.13",
"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"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"esbuild",
"sharp",
"simple-git-hooks"
]
}
}