-
Notifications
You must be signed in to change notification settings - Fork 73
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.78 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.78 KB
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
{
"private": true,
"type": "module",
"packageManager": "pnpm@10.30.3",
"scripts": {
"prebuild": "rm -rf ./src/dist",
"build": "tsc --project ./tsconfig.json --module commonjs --outDir ./src/dist --declaration",
"dev": "pnpm build --watch",
"generate": "wagmi generate",
"generate:node-config-type": "pnpm build && node ./src/dist/scripts/generateNodeConfigType.js",
"postgenerate:node-config-type": "prettier --write ./src/types/NodeConfig.generated.ts",
"test:type": "vitest --config vitest.type.config.ts",
"test:unit": "vitest --config vitest.unit.config.ts",
"test:integration": "vitest --config vitest.integration.config.ts",
"postinstall": "patch-package",
"lint": "eslint . --cache",
"lint:fix": "eslint . --fix --cache",
"prettier:check": "prettier --check '**/*.{ts,md,json,yml}'",
"prettier:format": "prettier --write '**/*.{ts,md,json,yml}'",
"audit:ci": "audit-ci --config ./audit-ci.jsonc"
},
"devDependencies": {
"@offchainlabs/prettier-config": "0.2.1",
"@types/node": "^20.9.0",
"@wagmi/cli": "^1.5.2",
"audit-ci": "^7.0.1",
"dotenv": "^16.3.1",
"eslint": "^9.39.1",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0",
"prettier": "^2.8.3",
"ts-morph": "^21.0.1",
"typescript-eslint": "^8.56.1",
"typescript": "^5.2.2",
"viem": "^1.20.0",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"viem": "1.20.0",
"viem>ws": "8.17.1",
"@wagmi/cli>esbuild": "0.25.1",
"@wagmi/cli>bundle-require": "5.1.0",
"@ethersproject/providers>ws": "7.5.10",
"elliptic": "6.6.1",
"nanoid": "3.3.8",
"base-x": "3.0.11",
"pbkdf2": "3.1.3",
"sha.js": "2.4.12",
"cipher-base": "1.0.5",
"tmp": "0.2.5"
}
}
}