-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 944 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 944 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
35
36
37
38
39
{
"name": "@futuritywork/plugins",
"version": "1.0.0",
"author": "Futurity",
"main": "src/index.ts",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.24.3",
"zod": "^4.1.13"
},
"devDependencies": {
"@types/bun": "latest",
"@typescript/native-preview": "^7.0.0-dev.20260130.1",
"typescript": "^5.9.3"
},
"exports": {
".": "./src/index.ts",
"./signing": "./src/signing.ts",
"./cors": "./src/cors.ts",
"./oauth": "./src/oauth.ts"
},
"description": "A minimal MCP (Model Context Protocol) server library for Bun with auth forwarding support",
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"llm",
"bun",
"futurity"
],
"license": "MIT",
"scripts": {
"check": "tsgo -b --noEmit",
"test": "bun test",
"keygen": "bun run src/keygen.ts",
"derive-public": "bun run src/derive-public.ts"
},
"type": "module",
"types": "src/index.ts"
}