-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.28 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.28 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
51
52
53
{
"name": "@coderide/mcp",
"version": "0.9.3",
"description": "Model Context Protocol server for CodeRide, task management redesigned for AI",
"type": "module",
"main": "dist/index.js",
"module": "src/index.ts",
"bin": {
"coderide-mcp": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"postbuild": "chmod +x dist/cli.js",
"start": "npm run build && node dist/cli.js server",
"dev": "tsx src/cli.ts server",
"wizard": "tsx src/cli.ts add",
"smithery:build": "npx @smithery/cli build",
"smithery:dev": "npx @smithery/cli dev"
},
"keywords": [
"mcp",
"task-management",
"vibe-coding"
],
"author": "Pix Srl <digital@pixdata.io>",
"license": "SEE LICENSE IN LICENSE",
"dependencies": {
"@iarna/toml": "^2.2.5",
"@modelcontextprotocol/sdk": "^1.0.3",
"@types/express": "^5.0.3",
"axios": "^1.6.0",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"inquirer": "^9.3.8",
"nanoid": "^5.1.3",
"open": "^10.2.0",
"zod": "^3.20.0"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^20.17.47",
"ts-node": "^10.9.1",
"tsx": "^4.20.5",
"typescript": "^5.2.2"
}
}