-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.05 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.05 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
{
"name": "@mcp-collections/project-overview",
"version": "1.0.0",
"description": "MCP server that provides a TypeScript project overview with file trees and function signatures",
"type": "module",
"main": "dist/index.js",
"bin": {
"project-overview-mcp": "dist/index.js"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc --watch",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"typescript",
"project-overview",
"code-analysis"
],
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"chokidar": "^3.5.3",
"typescript": "^5.3.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^20.10.0",
"jest": "^30.2.0",
"semantic-release": "^25.0.2",
"ts-jest": "^29.4.6"
}
}