-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.3 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.3 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
{
"name": "@speakeasy-api/docs-mcp-server",
"version": "0.12.1",
"description": "MCP server runtime exposing hybrid search over documentation via HTTP and stdio transports",
"license": "AGPL-3.0-only",
"type": "module",
"author": "Speakeasy <info@speakeasy.com> (https://speakeasy.com)",
"repository": {
"type": "git",
"url": "https://github.com/speakeasy-api/docs-mcp.git",
"directory": "packages/server"
},
"homepage": "https://github.com/speakeasy-api/docs-mcp",
"bugs": {
"url": "https://github.com/speakeasy-api/docs-mcp/issues"
},
"files": [
"dist"
],
"bin": {
"docs-mcp-server": "dist/bin.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"prepack": "node ../../scripts/check-workspace-protocol.mjs",
"prepublishOnly": "pnpm run build",
"build": "tsc -p tsconfig.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"lint": "eslint src test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@speakeasy-api/docs-mcp-core": "workspace:*",
"change-case": "^5.4.4",
"commander": "^13.1.0",
"zod": "^4.3.6"
}
}