-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.6 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.6 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
54
55
56
57
58
59
60
61
62
{
"name": "devpattern-conductor",
"version": "0.1.0",
"description": "Context-Driven Development MCP Server - Forked from Google's Conductor for use with Cline, Cursor, and other agentic coding platforms",
"type": "module",
"main": "dist/index.js",
"bin": {
"devpattern-conductor": "dist/index.js"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "tsc",
"build:mcp": "tsc",
"build:server": "npm run build -w @devpattern/server",
"build:web": "npm run build -w @devpattern/web",
"build:all": "npm run build:mcp && npm run build:server && npm run build:web",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"dev:server": "npm run dev -w @devpattern/server",
"dev:web": "npm run dev -w @devpattern/web",
"dev:dashboard": "concurrently \"npm run dev:server\" \"npm run dev:web\"",
"inspect": "npx @anthropic-ai/mcp-inspector dist/index.js",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"model-context-protocol",
"ai",
"llm",
"cline",
"cursor",
"context-driven-development",
"conductor",
"gemini"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/agiprolabs/devpattern-conductor.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"concurrently": "^8.2.0",
"tsx": "^4.7.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"templates",
"prompts"
]
}