forked from adcontextprotocol/registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 962 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 962 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
{
"name": "adcp-registry",
"version": "0.1.0",
"description": "A registry of AdCP compliant agents and publishers",
"type": "module",
"scripts": {
"dev": "tsx watch server/src/index.ts",
"dev:mcp": "MODE=mcp tsx watch server/src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"start:mcp": "MODE=mcp node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run server/tests/unit",
"test:integration": "vitest run server/tests/integration",
"test:coverage": "c8 vitest run"
},
"dependencies": {
"@adcp/client": "^2.5.7",
"@modelcontextprotocol/sdk": "^1.0.4",
"express": "^4.18.2"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^20.11.5",
"@types/supertest": "^6.0.3",
"c8": "^10.1.3",
"msw": "^2.11.6",
"supertest": "^7.1.4",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.2.1"
}
}