forked from wevm/wagmi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.59 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"private": true,
"type": "module",
"scripts": {
"build": "pnpm run --r --filter \"./packages/**\" build",
"changeset:prepublish": "pnpm version:update && pnpm build && bun .scripts/formatPackageJson.ts && bun .scripts/generateProxyPackages.ts",
"changeset:publish": "pnpm changeset:prepublish && changeset publish",
"changeset:version": "changeset version && pnpm version:update",
"clean": "pnpm run --r --parallel clean && rm -rf packages/**/*.json.tmp",
"deps": "pnpx taze -r",
"dev": "pnpm dev:react",
"dev:core": "pnpm --filter vite-core dev",
"dev:next": "pnpm --filter next-app dev",
"dev:react": "pnpm --filter vite-react dev",
"dev:ssr-react": "pnpm --filter vite-ssr-react dev",
"docs:dev": "rimraf node_modules/.cache/twoslash && pnpm --filter docs dev",
"format": "biome format . --write",
"lint": "biome check .",
"lint:fix": "pnpm lint --apply",
"lint:repo": "sherif",
"lint:unused": "pnpm clean && knip --ignore-internal",
"postinstall": "pnpm preconstruct",
"preconstruct": "bun .scripts/preconstruct.ts",
"preinstall": "npx only-allow pnpm",
"prepare": "pnpm simple-git-hooks",
"test": "vitest",
"test:build": "pnpm run --r --parallel test:build",
"test:cov": "vitest run --coverage",
"test:typecheck": "vitest typecheck",
"test:ui": "vitest --ui",
"test:update": "vitest --update",
"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",
"@wagmi/test": "workspace:*",
"bun": "1.0.1",
"bun-types": "^1.0.3",
"glob": "^10.3.10",
"happy-dom": "^12.2.1",
"jsdom": "^20.0.3",
"knip": "^2.29.0",
"publint": "^0.2.2",
"rimraf": "^4.4.1",
"sherif": "^0.8.1",
"simple-git-hooks": "^2.9.0",
"typescript": "5.4.2",
"viem": "2.8.4",
"vitest": "^0.34.5"
},
"packageManager": "[email protected]",
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"@algolia/client-search",
"esbuild",
"react",
"react-native",
"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/cli": {
"entry": [
"src/cli.ts!",
"src/exports/{config,index,plugins}.ts!",
"types/*.d.ts!"
]
},
"packages/connectors": {
"entry": "src/exports/index.ts!",
"ignoreDependencies": ["@walletconnect/modal"]
},
"packages/core": {
"entry": "src/exports/{actions,chains,codegen,index,internal,query}.ts!",
"ignoreDependencies": ["@tanstack/query-core"]
},
"packages/create-wagmi": {
"entry": "src/cli.ts!"
},
"packages/react": {
"entry": "src/exports/{actions,chains,codegen,connectors,index,query}.ts!"
},
"packages/test": {
"entry": [
"src/{globalSetup,setup}.ts!",
"src/exports/{index,react}.ts!"
]
}
}
}
}