forked from ethereum-optimism/ecosystem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.12 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
{
"name": "@eth-optimism/viem",
"type": "module",
"version": "0.0.11",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*",
"src/*"
],
"scripts": {
"docs": "typedoc",
"test": "vitest",
"clean": "rm -rf build types tsconfig.tsbuildinfo",
"typecheck": "tsc --noEmit --emitDeclarationOnly false",
"typecheck:ci": "tsc --noEmit --emitDeclarationOnly false",
"build": "tsc && resolve-tspaths",
"generate": "pnpm dlx tsx ./scripts/generate.ts",
"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"
},
"devDependencies": {
"@types/node": "^22.5.4",
"@viem/anvil": "^0.0.7",
"eta": "^3.1.1",
"resolve-tspaths": "^0.8.18",
"typedoc": "^0.26.7",
"typedoc-plugin-markdown": "^4.2.8",
"typescript": "^5.2.2",
"viem": "^2.17.9",
"vitest": "^1.6.0"
},
"peerDependencies": {
"viem": "^2.17.9"
}
}