generated from fission-codes/js-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.69 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.69 KB
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
49
50
51
52
53
54
55
{
"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} docs/*/{pnpm-lock.yaml,.astro,dist,node_modules}",
"lint": "pnpm -r --filter './packages/**' --if-present run lint",
"test": "pnpm -r --filter './packages/**' --if-present run test",
"check": "pnpm -r --filter './packages/**' --if-present run check",
"build": "pnpm -r --filter './packages/**' --if-present run build",
"docs": "pnpm -r --filter docs run build"
},
"devDependencies": {
"@biomejs/biome": "^2.3.8",
"@hugomrdias/configs": "^1.1.2",
"depcheck": "^1.4.7",
"simple-git-hooks": "^2.13.1",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.9.0",
"typedoc-plugin-mdn-links": "^5.0.7",
"typedoc-plugin-missing-exports": "^4.0.0",
"typedoc-plugin-zod": "^1.4.2",
"typescript": "5.9.3"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec biome check --no-errors-on-unmatched --files-ignore-unknown=true --staged"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome",
"@tailwindcss/oxide",
"esbuild",
"sharp",
"simple-git-hooks"
],
"ignoredBuiltDependencies": [
"@reown/appkit",
"bufferutil",
"cpu-features",
"keccak",
"protobufjs",
"secp256k1",
"ssh2",
"utf-8-validate"
]
}
}