-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.76 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
54
55
56
57
58
59
60
61
62
63
{
"name": "@tokencanopy/amp",
"version": "0.0.1",
"description": "AMP (Agent Meeting Proxy) \u2014 a meeting channel for agents: give any ACP-speaking coding agent a seat in a live meeting.",
"type": "module",
"engines": {
"node": ">=22"
},
"bin": {
"amp-mcp": "dist/mcp/bin.js",
"amp-fake-acp-agent": "dist/fake-agent/bin.js"
},
"scripts": {
"dev": "tsx watch --env-file-if-exists=.env src/index.ts",
"start": "node --env-file-if-exists=.env dist/index.js",
"build": "tsc -p tsconfig.json",
"db:init": "tsx --env-file-if-exists=.env scripts/db-init.ts",
"seed": "tsx --env-file-if-exists=.env scripts/seed.ts",
"smoke": "tsx --env-file-if-exists=.env scripts/smoke.ts",
"typecheck": "tsc --noEmit -p tsconfig.test.json",
"test": "vitest run",
"lint": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"edge": "tsx --env-file-if-exists=.env scripts/public-edge.ts"
},
"dependencies": {
"@fastify/websocket": "11.2.0",
"@modelcontextprotocol/sdk": "1.30.0",
"fastify": "5.10.0",
"fastify-type-provider-zod": "7.0.0",
"zod": "4.4.3"
},
"devDependencies": {
"@types/node": "26.2.0",
"@types/ws": "8.18.1",
"eslint": "9.39.5",
"prettier": "3.9.5",
"tsx": "4.23.1",
"typescript": "6.0.3",
"typescript-eslint": "8.64.0",
"vitest": "3.2.4"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/tokencanopy/amp.git"
},
"homepage": "https://github.com/tokencanopy/amp#readme",
"bugs": {
"url": "https://github.com/tokencanopy/amp/issues"
},
"keywords": [
"acp",
"mcp",
"agent",
"meeting",
"google-meet",
"zoom",
"coding-agent",
"recall.ai"
]
}