-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.25 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "nexario",
"version": "1.0.0",
"description": "Authority leasing for the autonomous agent economy",
"private": true,
"type": "module",
"scripts": {
"task:run": "tsx scripts/runFullTask.ts",
"agents:generate-wallets": "tsx scripts/generateAgentWallets.ts",
"agents:register-with-wallets": "tsx scripts/registerAgentsWithWallets.ts",
"dev": "tsx watch src/api/server.ts",
"build": "tsc --noEmit",
"start": "node dist/api/server.js",
"telegram": "tsx watch telegram/bot.ts",
"indexer": "tsx watch src/lib/erc8004/indexer.ts",
"db:generate": "drizzle-kit generate",
"db:migrate": "tsx src/db/migrate.ts",
"compile": "cd contracts && npx hardhat compile",
"deploy:sepolia": "cd contracts && npx hardhat run scripts/deploy.ts --network sepolia",
"register:agents": "cd contracts && npx hardhat run scripts/registerAgents.ts --network sepolia",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"format": "prettier --write src"
},
"dependencies": {
"@1shotapi/client-sdk": "^1.1.9",
"@metamask/7715-permission-types": "^0.7.1",
"@metamask/delegation-deployments": "^1.4.0",
"@metamask/smart-accounts-kit": "^1.6.0",
"@metamask/x402": "^0.2.0",
"@noble/curves": "^1.6.0",
"@noble/hashes": "^1.5.0",
"@types/ws": "^8.18.1",
"abitype": "^1.0.6",
"better-sqlite3": "^11.5.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.0",
"ethers": "^6.13.4",
"express": "^4.21.0",
"helmet": "^8.0.0",
"pino": "^9.5.0",
"pino-pretty": "^13.0.0",
"safe-stable-stringify": "^2.5.0",
"siwe": "^2.3.2",
"telegraf": "^4.16.3",
"uuid": "^10.0.0",
"venice-x402-client": "^0.2.0",
"viem": "^2.21.0",
"ws": "^8.21.0",
"x402": "^1.2.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.7.5",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"drizzle-kit": "^0.27.0",
"eslint": "^9.12.0",
"prettier": "^3.3.3",
"tsx": "^4.19.1",
"typescript": "^5.6.3",
"vitest": "^2.1.4"
},
"engines": {
"node": ">=20.0.0"
}
}