-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
130 lines (130 loc) · 4.07 KB
/
package.json
File metadata and controls
130 lines (130 loc) · 4.07 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
{
"name": "conductor-cli",
"version": "1.0.0",
"description": "AI-powered development assistant with specialized agents - like having senior developers, architects, and QA engineers on your team.",
"main": "dist/src/simple-cli.js",
"bin": {
"conductor": "dist/src/simple-cli.js",
"conductor-cli": "dist/src/simple-cli.js"
},
"scripts": {
"postinstall": "node scripts/post-install.js || true",
"prepare": "npm run build || true",
"build": "npm run clean && tsc",
"build:prod": "npm run clean && tsc --removeComments --sourceMap false",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build:prod",
"dev": "tsx src/enhanced-cli.ts",
"dev:legacy": "tsx src/cli.ts",
"test": "jest",
"test:unit": "jest --testPathPattern=unit --coverage",
"test:integration": "jest --testPathPattern=integration --runInBand",
"test:e2e": "jest --testPathPattern=e2e --runInBand --timeout=60000",
"test:performance": "node tests/performance/benchmark.js",
"test:claude-integration": "jest --testPathPattern=claude-integration --timeout=30000",
"test:all": "npm run test:unit && npm run test:integration && npm run test:e2e",
"test:ci": "jest --testPathPattern=unit --coverage=false --passWithNoTests --maxWorkers=2",
"test:recordings": "jest --testPathPattern=terminal-recordings --passWithNoTests --coverage=false",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"start": "node dist/enhanced-cli.js",
"start:legacy": "node dist/cli.js",
"serve": "http-server . -p 3000 -o --cors",
"dashboard": "tsx src/enhanced-cli.ts dashboard",
"init": "tsx src/enhanced-cli.ts init",
"launch": "tsx src/enhanced-cli.ts launch",
"quick-start": "tsx src/enhanced-cli.ts init --quick",
"recordings": "bash scripts/generate-recordings.sh",
"recordings:install": "which vhs || (echo 'Installing VHS...' && (brew install vhs || go install github.com/charmbracelet/vhs@latest))",
"precommit": "lint-staged"
},
"keywords": [
"conductor-cli",
"ai-orchestration",
"claude-flow",
"multi-agent-system",
"ai-development-team",
"developer-tools",
"mcp-tools",
"hive-mind",
"swarm-intelligence",
"npx",
"cli",
"terminal",
"automation"
],
"author": "Hadi Rickit <team@gallifreyconsulting.com> (https://rickithadi.dev)",
"license": "ISC",
"homepage": "https://github.com/rickithadi/conductor-cli#readme",
"repository": {
"type": "git",
"url": "https://github.com/rickithadi/conductor-cli.git"
},
"bugs": {
"url": "https://github.com/rickithadi/conductor-cli/issues"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist",
"bin",
"src",
"README.md",
"INSTALL.md",
"LICENSE"
],
"type": "commonjs",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"npm run test:unit -- --passWithNoTests"
],
"tests/**/*.{ts,tsx}": [
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/better-sqlite3": "^7.6.13",
"@types/blessed": "^0.1.25",
"better-sqlite3": "^12.2.0",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^4.1.2",
"cli-table3": "^0.6.3",
"commander": "^11.1.0",
"cors": "^2.8.5",
"figlet": "^1.8.1",
"fs-extra": "^11.2.0",
"glob": "^11.0.3",
"gradient-string": "^3.0.0",
"helmet": "^7.1.0",
"inquirer": "^9.2.12",
"nanoid": "^5.0.4",
"ora": "^5.4.1",
"p-queue": "^8.1.0",
"ruv-swarm": "^1.0.14",
"ws": "^8.18.3",
"yaml": "^2.8.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^8.2.10",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
}
}