-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.17 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.17 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
{
"name": "agentic-operator",
"version": "0.4.0",
"description": "Agentic trading operator for Rigoblock vaults — Cloudflare Worker + EIP-7702 delegation",
"license": "Apache-2.0",
"private": true,
"type": "module",
"scripts": {
"dev": "wrangler dev",
"deploy": "wrangler deploy",
"build": "tsc --noEmit",
"typecheck": "tsc --noEmit",
"test:quote": "npx tsx scripts/test-uniswap-quote.ts",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@aa-sdk/core": "^4.84.1",
"@account-kit/infra": "^4.84.1",
"@account-kit/wallet-client": "^4.84.1",
"@coinbase/x402": "^2.1.0",
"@metamask/smart-accounts-kit": "^0.4.0-beta.1",
"@uniswap/sdk-core": "^7.12.2",
"@uniswap/v4-sdk": "^1.29.1",
"@x402/core": "^2.6.0",
"@x402/evm": "^2.6.0",
"@x402/extensions": "^2.6.0",
"hono": "^4.6.0",
"openai": "^4.70.0",
"viem": "^2.21.0"
},
"devDependencies": {
"@cloudflare/vitest-pool-workers": "^0.13.1",
"@cloudflare/workers-types": "^4.20241106.0",
"@types/node": "^22.0.0",
"ethers": "^5.8.0",
"typescript": "^5.6.0",
"vitest": "^4.1.0",
"wrangler": "^4.67.0"
}
}