-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 847 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 847 Bytes
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
{
"name": "arbitrum-testnode",
"version": "0.2.2",
"private": true,
"type": "module",
"bin": {
"testnode": "./dist/index.mjs"
},
"scripts": {
"build": "esbuild src/index.ts --bundle --platform=node --target=node18 --format=esm --outfile=dist/index.mjs --banner:js='#!/usr/bin/env node'",
"dev": "tsx src/index.ts",
"test": "vitest",
"test:run": "vitest run",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"validate": "pnpm lint && pnpm build && pnpm typecheck && pnpm test:run"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/node": "^25.3.4",
"esbuild": "^0.27.3",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^2.1.0"
},
"dependencies": {
"@arbitrum/chain-sdk": "0.26.0",
"incur": "^0.2.2",
"viem": "^2.47.5",
"zod": "^3.24.0"
}
}