-
Notifications
You must be signed in to change notification settings - Fork 261
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.05 KB
/
package.json
File metadata and controls
42 lines (42 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
{
"name": "@sourcebot/mcp",
"version": "1.0.12",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "node ./dist/index.js",
"build:watch": "tsc-watch --preserveWatchOutput"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/node": "^20.0.0",
"tsc-watch": "6.2.1",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"@t3-oss/env-core": "^0.13.4",
"dedent": "^1.7.1",
"escape-string-regexp": "^5.0.0",
"express": "^5.1.0",
"zod": "^3.24.3"
},
"bin": {
"sourcebot-mcp": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/sourcebot-dev/sourcebot.git",
"directory": "packages/mcp"
},
"keywords": [
"mcp",
"modelcontextprotocol",
"code-search",
"sourcebot",
"code-intelligence"
]
}