-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
58 lines (58 loc) · 1.59 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
{
"name": "amb-mcp",
"version": "0.1.0",
"description": "ContextVM MCP server for querying AMB educational metadata from Nostr relays",
"license": "Unlicense",
"type": "module",
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./lib": "./dist/lib/index.js",
"./http": "./dist/http.js"
},
"scripts": {
"build": "tsc",
"dev": "bun run src/index.ts",
"stdio": "bun run src/stdio.ts",
"http": "bun run src/http.ts",
"start": "node dist/index.js",
"start:http": "node dist/http.js",
"test": "vitest run",
"test:watch": "vitest"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.40.0",
"@contextvm/sdk": "^0.3.2",
"@modelcontextprotocol/sdk": "^1.26.0",
"@mozilla/readability": "^0.6.0",
"amb-nostr-converter": "https://git.edufeed.org/api/packages/edufeed/npm/amb-nostr-converter/-/0.0.0-d216541/amb-nostr-converter-0.0.0-d216541.tgz",
"applesauce-core": "^5.1.0",
"applesauce-relay": "^5.1.0",
"applesauce-signers": "^5.1.0",
"cors": "^2.8.6",
"express": "^4.22.1",
"jose": "^5.9.6",
"jsonrepair": "^3.14.0",
"linkedom": "^0.18.12",
"n3": "^2.0.1",
"nostr-tools": "^2.10.0",
"qrcode-terminal": "^0.12.0",
"unpdf": "^1.6.2",
"ws": "^8.20.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/cors": "^2.8.19",
"@types/express": "^4.17.25",
"@types/n3": "^1.26.1",
"@types/node": "^22.0.0",
"@types/ws": "^8.18.1",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
},
"engines": {
"node": "^20",
"npm": "^10"
},
"packageManager": "npm@10.8.2"
}