-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1015 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 1015 Bytes
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
{
"name": "carrot-ai-pm",
"version": "1.0.0",
"main": "dist/src/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/src/server.js",
"dev": "tsx src/server.ts",
"watch": "tsc -w",
"start:sse": "PORT=3000 node dist/src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"mcp",
"carrot",
"fastapi"
],
"author": "",
"license": "ISC",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/express": "^5.0.2",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.18",
"@types/node-fetch": "^2.6.12",
"child_process": "^1.0.2",
"express": "^5.1.0",
"fs": "^0.0.1-security",
"glob": "^11.0.2",
"js-yaml": "^4.1.0",
"node-fetch": "^2.7.0",
"path": "^0.12.7",
"simple-git": "^3.27.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.4",
"typescript": "^5.0.0",
"zod": "^3.23.8"
},
"description": "Carrot MCP server for FastAPI codebase"
}