-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.64 KB
/
package.json
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
{
"name": "mcp-typescribe",
"version": "0.3.0",
"description": "An MCP server that answers questions about TypeScript APIs using TypeDoc JSON documentation",
"main": "dist/mcp-server/index.js",
"type": "module",
"bin": "dist/mcp-server/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"docs": "typedoc --json docs/api.json --entryPointStrategy expand src/sample-api/",
"start": "node dist/mcp-server/index.js run-server docs/api.json",
"format": "prettier --ignore-unknown --cache --check .",
"format:write": "prettier --ignore-unknown --write .",
"lint": "eslint . --ext .ts,.js,.mjs",
"dev": "tsc -w",
"test": "vitest run",
"test:watch": "vitest",
"inspect": "npx @modelcontextprotocol/inspector node ./dist/mcp-server/index.js run-server docs/api.json",
"release": "npm run build && changeset publish",
"new-version": "changeset version && npm run format:write && npm run build"
},
"files": [
"dist/mcp-server"
],
"keywords": [
"MCP Server",
"typescript",
"api",
"mcp",
"typedoc",
"documentation",
"model-context-protocol"
],
"author": "yWorks Support Team",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@types/node": "^22.13.9",
"eslint": "^9.23.0",
"eslint-config-prettier": "^10.1.1",
"prettier": "^3.5.3",
"typescript": "^5.8.2",
"typescript-eslint": "^8.29.0",
"vitest": "^3.1.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.8.0",
"commander": "^13.1.0",
"typedoc": "^0.28.0",
"yaml": "^2.7.1",
"zod": "^3.24.2",
"zod-to-json-schema": "^3.24.5"
}
}