-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.31 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.31 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
{
"name": "duediligence-insights",
"version": "2.0.0",
"description": "DueDiligence: Just-in-Time Intelligence Platform with x402 payments",
"type": "module",
"scripts": {
"start": "npx tsx src/server.ts",
"start:server": "npx tsx src/server.ts",
"start:agent": "npx tsx src/agent.ts",
"dev": "concurrently \"npm run start:server\" \"cd client && npm run dev\"",
"build": "tsc && cd client && npm run build",
"test": "echo \"Start server with npm start, then open http://localhost:4021\""
},
"keywords": [
"x402",
"ai-agent",
"web3",
"payments",
"usdc",
"base",
"sse",
"duediligence"
],
"author": "",
"license": "ISC",
"dependencies": {
"@langchain/core": "^1.1.17",
"@langchain/google-genai": "^2.1.13",
"@langchain/openai": "^1.2.3",
"@x402/core": "^2.2.0",
"@x402/evm": "^2.2.0",
"@x402/express": "^2.2.0",
"@x402/fetch": "^2.2.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"express": "^5.2.1",
"uuid": "^11.1.0",
"viem": "^2.45.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^5.0.6",
"@types/node": "^25.1.0",
"@types/uuid": "^10.0.0",
"concurrently": "^9.1.2",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}