-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.09 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.09 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
{
"name": "@tac0de/code-explainer-mcp",
"version": "0.1.0",
"private": false,
"description": "An MCP server that explains repository structure and file roles in plain language.",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": "./dist/index.js"
},
"bin": {
"code-explainer-mcp": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"typecheck": "tsc --noEmit -p tsconfig.json",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"code-explainer",
"typescript",
"agent-tools"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"zod": "^4.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0"
},
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}