-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 2.54 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 2.54 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
{
"name": "agentwise",
"version": "2.3.0",
"description": "Multi-agent orchestration system for Claude Code with 15-30% token optimization, self-improving agents, and automatic claim verification",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon --watch src --ext ts --exec ts-node src/index.ts",
"start": "node dist/index.js",
"test": "jest",
"test:all": "node test-runner.js",
"test:validate": "node validate-tests.js",
"test:coverage": "node test-runner.js --coverage",
"test:watch": "node test-runner.js --watch",
"test:ci": "node test-runner.js --parallel --bail --no-cache",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"monitor": "ts-node src/monitoring/index.ts",
"optimization:example": "ts-node examples/production-optimization-example.ts",
"optimization:health": "ts-node -e \"require('./dist/optimization/ProductionOptimizationSystem').default.getInstance({environment: 'development'}).then(s => console.log(JSON.stringify(s.getHealthStatus(), null, 2)))\"",
"optimization:report": "ts-node -e \"require('./dist/optimization/ProductionOptimizationSystem').default.getInstance({environment: 'development'}).then(s => s.generateSystemReport().then(p => console.log('Report:', p)))\"",
"optimization:status": "ts-node -e \"require('./dist/optimization/ProductionOptimizationSystem').default.getInstance({environment: 'development'}).then(s => console.log(JSON.stringify(s.getStatus(), null, 2)))\""
},
"keywords": [
"claude",
"ai",
"agents",
"orchestration"
],
"author": "Philip Ritmeester <@VibeCodingWithPhil>",
"license": "PROPRIETARY - See LICENSE file",
"private": true,
"dependencies": {
"@observablehq/plot": "^0.6.17",
"@types/ws": "^8.18.1",
"axios": "^1.12.2",
"blessed": "^0.1.81",
"chalk": "^4.1.2",
"chokidar": "^4.0.3",
"commander": "^11.1.0",
"d3": "^7.9.0",
"fs-extra": "^11.2.0",
"inquirer": "^12.9.4",
"lru-cache": "^11.1.0",
"node-pty": "^1.0.0",
"open": "^10.0.3",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/blessed": "^0.1.25",
"@types/fs-extra": "^11.0.4",
"@types/inquirer": "^9.0.9",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.11",
"@typescript-eslint/eslint-plugin": "^8.45.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^9.37.0",
"jest": "^30.2.0",
"nodemon": "^3.0.2",
"ora": "^8.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}