-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "hack-agent",
"version": "0.0.1",
"private": true,
"description": "tradewise.agentlab.eth — an autonomous on-chain agent that earns x402 USDC by quoting Uniswap swaps",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"gen-wallets": "tsx scripts/gen-wallets.ts",
"distribute": "tsx scripts/distribute.ts",
"forge:build": "cd contracts && forge build",
"forge:test": "cd contracts && forge test"
},
"dependencies": {
"@0glabs/0g-serving-broker": "^0.7.5",
"@0glabs/0g-ts-sdk": "^0.3.3",
"@noble/ciphers": "^2.2.0",
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0",
"@vercel/edge-config": "^1.4.3",
"@vercel/functions": "^3.4.4",
"@x402/core": "^2.10.0",
"@x402/evm": "^2.10.0",
"@x402/fetch": "^2.10.0",
"@x402/next": "^2.10.0",
"@x402/paywall": "^2.10.0",
"ethers": "^6.16.0",
"ioredis": "^5",
"next": "^16.2.4",
"react": "^19.2.5",
"react-dom": "^19.2.5",
"viem": "^2.48.4",
"zod": "^3.24.2"
},
"devDependencies": {
"@tailwindcss/postcss": "^4.2.4",
"@types/node": "^22.10.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"eslint": "^9.0.0",
"eslint-config-next": "^16.2.4",
"tailwindcss": "^4.2.4",
"tsx": "^4.21.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.0"
}