-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.08 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.08 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
{
"name": "402-server",
"scripts": {
"dev": "wrangler dev",
"dev:test": "wrangler dev --local",
"deploy": "wrangler deploy --minify",
"deploy:dev": "wrangler deploy --env dev --minify",
"cf-typegen": "wrangler types --env-interface CloudflareBindings",
"test": "vitest",
"test:ui": "vitest --ui",
"test:sepolia": "vitest test/e2e-upload-sepolia.test.ts",
"test:mainnet": "TEST_API_URL=https://402-server.pinata-marketing-enterprise.workers.dev vitest test/e2e-upload-mainnet.test.ts",
"test:retrieve": "TEST_API_URL=https://402-server.pinata-marketing-enterprise.workers.dev vitest test/e2e-retrieve-mainnet.test.ts"
},
"dependencies": {
"@coinbase/cdp-sdk": "^1.44.1",
"@coinbase/x402": "^2.1.0",
"@x402/core": "^2.3.1",
"@x402/evm": "^2.3.1",
"@x402/fetch": "^2.3.0",
"@x402/hono": "^2.3.0",
"hono": "^4.12.0",
"pinata": "^2.5.5",
"viem": "^2.46.2"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@vitest/ui": "^4.0.18",
"dotenv": "^17.3.1",
"vitest": "^4.0.18",
"wrangler": "^4.67.0"
}
}