-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 897 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 897 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
34
35
36
{
"name": "base-agent-meter",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "tsx watch src/server.ts",
"build": "tsc -p tsconfig.build.json",
"start": "node dist/server.js",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"check": "tsx src/cli.ts",
"canary": "node scripts/canary.mjs",
"pay:smoke": "node scripts/canary.mjs"
},
"dependencies": {
"@coinbase/cdp-sdk": "1.54.0",
"@x402/core": "2.20.0",
"@x402/evm": "2.20.0",
"@x402/express": "2.20.0",
"@x402/extensions": "^2.20.0",
"@x402/fetch": "2.20.0",
"@x402/svm": "2.20.0",
"dotenv": "^16.4.7",
"express": "^5.1.0",
"ox": "^1.6.2",
"viem": "^2.45.0"
},
"devDependencies": {
"@types/express": "^5.0.3",
"@types/node": "^24.3.0",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}