-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1.03 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
{
"name": "agentgate",
"version": "0.4.0",
"private": true,
"license": "MIT",
"description": "Minimal Intent Bond Protocol prototype service",
"main": "dist/index.js",
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"lint": "tsc --noEmit -p tsconfig.json",
"spam": "tsx scripts/spam-sim.ts",
"example:toy-agent": "tsx examples/toy-agent.ts",
"example:adapter-demo": "tsx examples/adapter-demo.ts",
"mcp:server": "tsx src/mcp/server.ts",
"restart": "lsof -ti:3000 | xargs kill -9 2>/dev/null; npm run dev"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^12.2.0",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"fastify": "^5.8.2",
"zod": "^4.1.8"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/express": "^5.0.6",
"@types/node": "^24.6.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
}
}