-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.47 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.47 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
{
"name": "ask-ruvnet",
"version": "4.14.3",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"test:smoke": "node scripts/test-production.mjs",
"test:kb": "node scripts/test-kb-completeness.mjs",
"build": "cd src/ui && npm install && npm run build",
"start": "bash scripts/deployment/start-railway.sh",
"deploy": "bash scripts/deployment/deploy.sh",
"deploy:patch": "bash scripts/deployment/deploy.sh patch",
"deploy:minor": "bash scripts/deployment/deploy.sh minor",
"deploy:major": "bash scripts/deployment/deploy.sh major",
"kb:ingest": "node scripts/kb-architecture-sync.js --ingest && npm run kb:visual",
"kb:watch": "node scripts/kb-architecture-sync.js --watch",
"kb:status": "node scripts/kb-architecture-sync.js --status",
"kb:query": "node scripts/kb-architecture-sync.js --query",
"kb:visual": "node scripts/build-kb-universe.js",
"kb:visual:screenshot": "node scripts/build-kb-universe.js --screenshot",
"kb:refresh": "node scripts/kb-refresh.js",
"kb:sweep": "node scripts/kb-sweep-updates.js",
"kb:sweep:force": "node scripts/kb-sweep-updates.js --force",
"kb:evolution": "node scripts/ingest-github-evolution.js",
"kb:github": "node scripts/ingest-github-repos.js",
"kb:full": "npm run kb:github && npm run kb:evolution && npm run kb:ingest",
"test:quality": "node scripts/test-quality-audit.mjs --production",
"test:verify": "node scripts/verify-everything.mjs --production"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@google/genai": "^1.43.0",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.29.0",
"@ruvector/rvf": "^0.2.1",
"@ruvector/rvf-node": "^0.1.8",
"@xenova/transformers": "^2.17.2",
"axios": "^1.13.2",
"cors": "^2.8.6",
"dialogue-reporter": "^1.1.6",
"dotenv": "^17.2.3",
"express": "^5.2.0",
"express-rate-limit": "^8.2.1",
"fluent-ffmpeg": "^2.1.3",
"googleapis": "^166.0.0",
"groq-sdk": "^0.37.0",
"helmet": "^8.1.0",
"openai": "^6.9.1",
"pdf-parse": "^1.1.1",
"ruv-swarm": "^1.0.20",
"zod": "^4.3.6"
},
"devDependencies": {
"csv-parser": "^3.2.0",
"mammoth": "^1.11.0",
"pg": "^8.20.0",
"pptxgenjs": "^4.0.1",
"puppeteer": "^24.31.0",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"sharp": "^0.34.5",
"tesseract.js": "^6.0.1"
}
}