-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathpackage.json
42 lines (42 loc) · 1.31 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
{
"name": "@eth-optimism/wagmi",
"description": "OP extensions for wagmi",
"type": "module",
"version": "0.1.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"clean": "rm -rf build types tsconfig.tsbuildinfo",
"build": "tsc && resolve-tspaths",
"lint": "eslint \"**/*.{ts,tsx}\" && pnpm prettier --check \"**/*.{ts,tsx}\"",
"lint:ci": "eslint \"**/*.{ts,tsx}\" --quiet && pnpm prettier --check \"**/*.{ts,tsx}\"",
"lint:fix": "eslint \"**/*.{ts,tsx}\" --fix --quiet && pnpm prettier \"**/*.{ts,tsx}\" --write --loglevel=warn",
"test": "vitest --passWithNoTests",
"test:ci": "vitest --passWithNoTests --run",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"typecheck:ci": "tsc --noEmit --emitDeclarationOnly false"
},
"devDependencies": {
"@eth-optimism/viem": "workspace:^0.4.0",
"@tanstack/react-query": "^5",
"@types/react": "^18",
"@viem/anvil": "^0.0.7",
"react": "^18",
"resolve-tspaths": "^0.8.18",
"typescript": "^5.2.2",
"viem": "^2.17.9",
"vitest": "^1.6.0",
"wagmi": "^2.12"
},
"peerDependencies": {
"@eth-optimism/viem": "workspace:^0.4.0",
"@tanstack/react-query": ">=5.0.0",
"react": ">=18",
"viem": "^2.17.9",
"wagmi": "^2.12"
}
}