forked from ponder-sh/ponder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"private": true,
"scripts": {
"bench:ponder:ci": "pnpm --filter \"./benchmarks\" bench:ponder:ci",
"bench:subgraph:ci": "pnpm --filter \"./benchmarks\" bench:subgraph:ci",
"build": "pnpm --filter \"./packages/**\" --parallel build",
"changeset:release": "pnpm build && changeset publish",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "pnpm lint --apply",
"prepare": "npx simple-git-hooks",
"test": "pnpm --parallel --no-bail test",
"typecheck": "pnpm --filter \"./packages/**\" --parallel typecheck"
},
"devDependencies": {
"@biomejs/biome": "^1.4.1",
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"lint-staged": "^15.1.0",
"simple-git-hooks": "^2.9.0",
"typescript": "5.0.4",
"viem": "1.16.0"
},
"lint-staged": {
"*.ts": ["biome format --no-errors-on-unmatched", "biome check"],
"!(*.ts)": ["biome format --no-errors-on-unmatched"]
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"packageManager": "[email protected]",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
},
"peerDependencyRules": {
"ignoreMissing": ["node-fetch"]
}
},
"engines": {
"node": ">=18.14"
}
}