-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.23 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.23 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
{
"name": "@speakeasy-api/docs-mcp-cli",
"version": "0.14.0",
"description": "CLI toolchain for validating, indexing, and bootstrapping docs-mcp documentation corpora",
"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/cli"
},
"homepage": "https://github.com/speakeasy-api/docs-mcp",
"bugs": {
"url": "https://github.com/speakeasy-api/docs-mcp/issues"
},
"files": [
"dist"
],
"bin": {
"docs-mcp": "dist/index.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.build.json",
"typecheck": "tsc -p tsconfig.json",
"test": "vitest run --passWithNoTests",
"lint": "eslint src"
},
"dependencies": {
"@speakeasy-api/docs-mcp-core": "workspace:*",
"commander": "^13.1.0",
"fast-glob": "^3.3.3"
}
}