-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.33 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.33 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
{
"name": "orchestrai",
"version": "1.0.0",
"description": "Advanced Multi-Agent System with Crystalline Memory Architecture",
"main": "orchestrai-master/orchestrator/index.js",
"scripts": {
"dev": "cd Orchestrai-frontend && npm run dev",
"frontend:install": "cd Orchestrai-frontend && npm install",
"frontend:build": "cd Orchestrai-frontend && npm run build",
"frontend:dev": "cd Orchestrai-frontend && npm run dev",
"orchestrator": "node orchestrai-master/orchestrator/orchestrator-stable.js",
"orchestrator:original": "node orchestrai-master/orchestrator/index.js",
"redis": "redis-server",
"test": "jest",
"setup": "npm install && cd Orchestrai-frontend && npm install",
"build": "npm run frontend:build",
"test:notion": "node -e \"const MCPManager = require('./orchestrai-shared/mcp-servers/mcp-manager'); const manager = new MCPManager(); manager.testNotionConnection().then(result => { console.log('📋 Notion Connection Test Results:'); console.log(JSON.stringify(result, null, 2)); if (!result.success) { console.log('\\n📝 Next Steps:'); result.setup_instructions?.forEach(instruction => console.log(' ' + instruction)); } });\"",
"mcp:status": "curl -s http://localhost:5501/mcp/status | jq",
"mcp:start": "curl -X POST http://localhost:5501/mcp/start-all | jq",
"mcp:notion": "curl -X POST http://localhost:5501/mcp/start/notion | jq",
"mcp:logs": "curl -s http://localhost:5501/mcp/logs | jq",
"services:status": "./scripts/check-services.sh",
"services:start": "./scripts/manage-services.sh start all",
"services:stop": "./scripts/manage-services.sh stop all",
"services:restart": "./scripts/manage-services.sh restart all",
"services:logs": "./scripts/manage-services.sh logs all",
"git:setup-domains": ".github/scripts/setup-domain-branches.sh",
"git:setup-worktrees": ".github/scripts/setup-worktrees.sh",
"git:sparse-checkout": ".github/scripts/sparse-checkout-domain.sh",
"git:workflow-help": "cat .github/GIT-WORKFLOW.md",
"monitor:tokens": "./scripts/start-token-monitor.sh",
"monitor:demo": "./scripts/demo-token-monitor.sh",
"monitor:server": "node orchestrai-shared/monitoring/token-monitor-server.js",
"monitor:test-data": "node orchestrai-shared/monitoring/test-token-monitor.js",
"monitor:inject": "node orchestrai-shared/monitoring/inject-current-tokens.js",
"hooks:server": "node orchestrai-shared/claude-code/hooks-server.js",
"monitor:full": "./scripts/start-full-monitoring.sh",
"scan:pixels": "npx tsx tools/tracking-pixel-detector.ts"
},
"keywords": [
"ai-agents",
"multi-agent-systems",
"crystalline-memory",
"geometric-orchestration",
"pipeline-sharing",
"claude-code",
"mcp-servers"
],
"author": "ORCHESTRAI Team",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.10.0",
"@mendable/firecrawl-js": "^4.3.5",
"@modelcontextprotocol/sdk": "^1.17.4",
"@modelcontextprotocol/server-puppeteer": "^2025.5.12",
"@notionhq/client": "^5.3.0",
"@playwright/mcp": "^0.0.35",
"@types/node": "^20.10.0",
"@types/pg": "^8.10.0",
"@types/uuid": "^9.0.0",
"@types/ws": "^8.5.0",
"axios": "^1.6.0",
"blessed": "^0.1.81",
"blessed-contrib": "^4.11.0",
"chalk": "^5.6.2",
"chokidar": "^4.0.3",
"cli-spinners": "^3.3.0",
"cors": "^2.8.5",
"dotenv": "^16.3.0",
"express": "^4.21.2",
"node-fetch": "^3.3.2",
"pg": "^8.11.0",
"playwright": "^1.55.0",
"redis": "^4.6.0",
"typescript": "^5.3.0",
"uuid": "^9.0.0",
"ws": "^8.18.3",
"zod": "^3.22.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.0",
"@testing-library/react": "^14.1.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.55.0",
"eslint-config-next": "^15.0.0",
"googleapis": "^164.1.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"nodemon": "^3.0.0",
"prettier": "^3.1.0",
"tsx": "^4.6.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/orchestrai/orchestrai.git"
},
"bugs": {
"url": "https://github.com/orchestrai/orchestrai/issues"
},
"homepage": "https://github.com/orchestrai/orchestrai#readme"
}