forked from FilOzone/synapse-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.55 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.55 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
{
"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 --no-errors-on-unmatched --files-ignore-unknown=true --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",
"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}"
},
"devDependencies": {
"@biomejs/biome": "2.3.3",
"knip": "^5.64.1",
"markdownlint-cli2": "^0.18.1",
"typescript": "5.9.3",
"wireit": "^0.14.12"
},
"simple-git-hooks": {
"pre-commit": "pnpm exec biome check --no-errors-on-unmatched --files-ignore-unknown=true --staged"
},
"engines": {
"node": ">=22"
}
}