-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.13 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.13 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
64
65
66
67
68
69
70
{
"name": "@jasonkneen/fluent-mcp",
"version": "1.0.2",
"description": "A chainable, fluent interface for building MCP servers with minimal code",
"main": "./dist/fluent-mcp.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/example-server.js",
"dev": "node dist/example-server.js",
"demo": "node dist/example-server.js",
"demo:ts": "ts-node --esm --transpile-only src/example-server.ts",
"demo:client": "ts-node --esm --transpile-only src/example-client.ts",
"demo:http-client": "ts-node --esm --transpile-only src/example-http-client.ts",
"demo:sse": "node examples/example-sse-server.js",
"demo:sse-client": "node examples/example-sse-client.js",
"lint": "eslint src --ext .ts",
"test": "vitest run src/fluent-mcp.test.ts src/server.test.ts src/fluent-mcp-client.test.ts",
"test:watch": "vitest",
"test:fluent": "node src/test-fluent-mcp.js",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.2",
"socket.io": "^4.8.1",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/socket.io": "^3.0.2",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"vitest": "^0.34.6"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jasonkneen/fluent-mcp.git"
},
"keywords": [
"mcp",
"model-context-protocol",
"fluent",
"chainable",
"api",
"server"
],
"author": "Jason Kneen",
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonkneen/fluent-mcp/issues"
},
"homepage": "https://github.com/jasonkneen/fluent-mcp#readme",
"packageManager": "pnpm@10.8.1+sha512.c50088ba998c67b8ca8c99df8a5e02fd2ae2e2b29aaf238feaa9e124248d3f48f9fb6db2424949ff901cffbb5e0f0cc1ad6aedb602cd29450751d11c35023677",
"types": "./dist/fluent-mcp.d.ts",
"exports": {
".": {
"import": "./dist/fluent-mcp.js",
"types": "./dist/fluent-mcp.d.ts"
}
},
"files": [
"dist"
]
}