-
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.38 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.38 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": "agent-karma",
"version": "0.6.0",
"description": "Credit bureau for AI agent wallets — trust scores from public blockchain data",
"type": "module",
"scripts": {
"test:rpc": "tsx scripts/test-rpc.ts",
"db:migrate": "tsx src/db/migrate.ts",
"indexer:erc8004": "tsx src/indexer/erc8004.ts",
"indexer:x402": "tsx src/indexer/x402.ts",
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"mcp": "tsx src/mcp/server.ts",
"score": "tsx src/scoring/compute.ts",
"test": "vitest run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rushikeshmore/agent-karma.git"
},
"keywords": [
"agent",
"wallet",
"trust",
"blockchain",
"erc-8004",
"x402"
],
"author": "Rushikesh More",
"license": "MIT",
"bugs": {
"url": "https://github.com/rushikeshmore/agent-karma/issues"
},
"homepage": "https://github.com/rushikeshmore/agent-karma#readme",
"dependencies": {
"@hono/node-server": "^1.19.9",
"@modelcontextprotocol/sdk": "^1.26.0",
"@neondatabase/serverless": "^1.0.2",
"dotenv": "^17.3.1",
"hono": "^4.12.1",
"postgres": "^3.4.8",
"viem": "^2.46.2",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.0.18",
"wrangler": "^4.67.0"
}
}