-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 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
{
"name": "coding-agent-a2a",
"version": "0.1.0",
"description": "A2A + MCP server that exposes coding-agent CLIs (Cursor, Claude Code) over two protocols on one port",
"type": "module",
"main": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSES"
],
"engines": {
"node": ">=20"
},
"scripts": {
"build": "tsc --noEmit false --outDir dist",
"typecheck": "tsc --noEmit",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "CURSOR_E2E=1 vitest run tests/e2e",
"lint": "eslint src tests"
},
"dependencies": {
"@a2a-js/sdk": "0.3.13",
"@modelcontextprotocol/sdk": "^1.29.0",
"express": "^4.21.2",
"uuid": "^11.1.0"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^22.15.3",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"@vitest/coverage-v8": "^3.1.3",
"eslint": "^9.26.0",
"eventsource": "^3.0.5",
"supertest": "^7.1.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
}
}