forked from coinbase/x402
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1001 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 1001 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
{
"name": "x402-e2e",
"version": "1.0.0",
"description": "End-to-end tests for X402 protocol",
"main": "dist/test.js",
"scripts": {
"test": "tsx test.ts",
"test:watch": "tsc --watch",
"setup": "./setup.sh",
"setup:legacy": "./setup.sh --legacy",
"install:all": "pnpm install && ./setup.sh",
"install:all:legacy": "pnpm install && ./setup.sh --legacy",
"clean": "rm -rf dist",
"clean:ports": "lsof -ti:4022-4060 | xargs kill -9 2>/dev/null || echo 'Ports cleared'",
"permit2:approve": "tsx scripts/permit2-approval.ts approve",
"permit2:revoke": "tsx scripts/permit2-approval.ts revoke"
},
"dependencies": {
"axios": "^1.6.0",
"dotenv": "^17.0.1",
"express": "^4.18.0",
"prompts": "^2.4.2",
"tsx": "^4.20.3",
"viem": "^2.0.0"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/node": "^20.0.0",
"@types/prompts": "^2.4.9",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
}
}