-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.92 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.92 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
{
"name": "synapse",
"version": "0.0.0",
"private": true,
"description": "JavaScript packages for Filecoin Onchain Cloud",
"license": "Apache-2.0 OR MIT",
"workspaces": [
"./packages/*",
"./examples/*",
"./docs"
],
"scripts": {
"preinstall": "pnpx only-allow pnpm",
"build": "pnpm -r --filter='./packages/*' --if-present run build",
"lint": "pnpm -r --if-present run lint",
"lint:fix": "biome check --fix .",
"test": "pnpm -r --filter='./packages/*' --if-present run test",
"check:markdown": "markdownlint-cli2 --config .github/.markdownlint-cli2.jsonc '**/*.md' '**/*.mdx'",
"check:repo": "pnpx sherif@latest -r root-package-manager-field",
"check:knip": "knip --config .github/knip.jsonc",
"update:msw": "pnpm -r --filter='./packages/*' --if-present run update:msw",
"clean": "rm -rf node_modules pnpm-lock.yaml package-lock.json packages/*/{.wireit,pnpm-lock.yaml,package-lock.json,coverage,.nyc_output,dist,node_modules} examples/*/{.wireit,pnpm-lock.yaml,package-lock.json,coverage,.nyc_output,dist,node_modules} docs/{.wireit,pnpm-lock.yaml,package-lock.json,coverage,.nyc_output,dist,node_modules,.astro} apps/*/{.wireit,pnpm-lock.yaml,package-lock.json,coverage,.nyc_output,dist,node_modules,.wrangler}",
"clean:cache": "rm -rf packages/*/{.wireit,coverage,.nyc_output,dist} examples/*/{.wireit,coverage,.nyc_output,dist} docs/{.wireit,coverage,.nyc_output,dist,.astro} apps/*/{.wireit,coverage,.nyc_output,dist,.wrangler}"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"knip": "^6.2.0",
"markdownlint-cli2": "^0.22.0",
"typescript": "catalog:",
"wireit": "^0.14.12"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec biome check --staged --fix"
},
"engines": {
"node": ">=22"
},
"packageManager": "pnpm@10.33.0",
"devEngines": {
"runtime": {
"name": "node",
"version": "^24.14.0",
"onFail": "download"
}
}
}