This repository has been archived by the owner on May 16, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
63 lines (63 loc) · 1.93 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run --r --filter \"./packages/**\" build",
"changeset:publish": "pnpm version:update && pnpm build && bun .scripts/formatPackageJson.ts && bun .scripts/generateProxyPackages.ts && changeset publish",
"changeset:version": "changeset version && pnpm version:update",
"clean": "pnpm run --r --parallel clean",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "pnpm lint --apply",
"lint:unused": "pnpm clean && knip --ignore-internal",
"dev": "pnpm --filter vite-vue dev",
"typecheck": "pnpm run --r --parallel typecheck && tsc --noEmit",
"version:update": "bun .scripts/updateVersion.ts",
"version:update:viem": "bun .scripts/updateViemVersion.ts"
},
"devDependencies": {
"@biomejs/biome": "1.1.2",
"@changesets/changelog-github": "0.4.6",
"@changesets/cli": "^2.26.2",
"@viem/anvil": "0.0.6",
"@vitest/coverage-v8": "^0.34.5",
"@vitest/ui": "^0.34.5",
"bun": "1.0.1",
"bun-types": "^1.0.3",
"glob": "^10.3.10",
"knip": "^2.29.0",
"publint": "^0.2.2",
"rimraf": "^4.4.1",
"simple-git-hooks": "^2.9.0",
"typescript": "5.1.6",
"viem": "2.8.4",
"vitest": "^0.34.5"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": ["@algolia/client-search", "esbuild", "search-insights"]
}
},
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint:fix"
},
"knip": {
"ignore": ["**/*.test-d.ts", "**/templates/**", "**/hardhat.config.js"],
"ignoreBinaries": ["only-allow", "open"],
"ignoreWorkspaces": [
"docs",
"packages/register-tests/**",
"packages/test",
"playgrounds/**"
],
"workspaces": {
".": {
"entry": ".scripts/*.ts"
},
"packages/vue": {
"entry": "src/exports/{actions,chains,connectors,index,query}.ts!"
}
}
}
}