-
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) · 909 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 909 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
36
37
38
39
40
41
{
"name": "cronosai-ops",
"version": "1.0.0",
"description": "AI agent where each capability is a micro-service paid via x402",
"main": "dist/api/index.js",
"scripts": {
"dev": "tsx watch src/api/index.ts",
"build": "tsc",
"start": "node dist/api/index.js",
"typecheck": "tsc --noEmit"
},
"keywords": [
"cronos",
"ai",
"x402",
"blockchain",
"security"
],
"author": "",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.30.0",
"@crypto.com/facilitator-client": "^1.0.4",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"ethers": "^6.16.0",
"express": "^4.21.0",
"helmet": "^8.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0"
},
"engines": {
"node": ">=18.0.0"
}
}