-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.19 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.19 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
{
"name": "docs-mcp",
"private": true,
"description": "Lightweight, domain-agnostic embedded search engine exposed via MCP, optimized for serving SDK documentation to AI coding agents",
"type": "module",
"packageManager": "pnpm@10.5.2",
"license": "AGPL-3.0-only",
"author": "Speakeasy <info@speakeasy.com> (https://speakeasy.com)",
"repository": {
"type": "git",
"url": "https://github.com/speakeasy-api/docs-mcp.git"
},
"homepage": "https://github.com/speakeasy-api/docs-mcp",
"bugs": {
"url": "https://github.com/speakeasy-api/docs-mcp/issues"
},
"scripts": {
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/mdast": "^4.0.4",
"@types/node": "^22.13.10",
"@types/picomatch": "^4.0.2",
"@types/semver": "^7.7.1",
"eslint": "^9.22.0",
"prettier": "^3.8.1",
"turbo": "^2.4.4",
"typescript": "^5.9.3",
"vitest": "^3.0.9"
},
"engines": {
"node": ">=22.0.0"
}
}