-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.23 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.23 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
{
"name": "soulfield",
"version": "1.0.0",
"main": "backend/index.cjs",
"scripts": {
"start": "node backend/index.cjs",
"start:clean": "./start-clean.sh",
"start:mcp": "node backend/mcp-server.cjs",
"start:tui": "node backend/tui.js",
"test:apply": "node backend/tests/test-apply.js --dry",
"test:apply:run": "node backend/tests/test-apply.js --apply",
"test": "node --test backend/tests/*.test.cjs",
"test:meta": "echo 'Running meta-tests (opt-in)...' && node backend/tests/test-tests-routing.test.cjs && node backend/tests/test-tests-red-team.test.cjs && node backend/tests/test-tests-chaos.test.cjs",
"ingest-learnings": "./backend/scripts/ingest-learnings.sh",
"kg:sync-docs": "node backend/scripts/kg-sync-docs.cjs",
"debug:cli": "npx @mariozechner/claude-trace --include-all-requests",
"debug:server": "LENS_DEBUG=true npm start",
"debug:orchestration": "node backend/tests/test-governor-scoring.cjs",
"debug:dashboard": "node tools/debug-dashboard.cjs --last 1h",
"debug:live": "node tools/debug-dashboard.cjs --live"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.68.0",
"@babel/parser": "^7.28.5",
"@babel/traverse": "^7.28.5",
"@google/genai": "^1.30.0",
"@modelcontextprotocol/sdk": "^1.22.0",
"@pinecone-database/pinecone": "^6.1.3",
"@xenova/transformers": "^2.17.2",
"axios": "^1.13.2",
"better-sqlite3": "^12.4.1",
"blessed": "^0.1.81",
"chokidar": "^4.0.3",
"compromise": "^14.14.4",
"cors": "^2.8.5",
"dotenv": "^17.2.2",
"express": "^5.1.0",
"express-rate-limit": "^8.2.1",
"glob": "^11.0.3",
"google-auth-library": "^10.5.0",
"googleapis": "^165.0.0",
"graphology": "^0.26.0",
"graphology-communities-louvain": "^2.0.2",
"graphology-metrics": "^2.4.0",
"gray-matter": "^4.0.3",
"morgan": "^1.10.1",
"nanoid": "^5.1.6",
"natural": "^8.1.0",
"node-fetch": "^3.3.2",
"openai": "^6.8.1",
"raw-body": "^3.0.1",
"sentiment": "^5.0.2",
"ws": "^8.18.3",
"xmlbuilder": "^15.1.1",
"yaml": "^2.5.1"
},
"description": "",
"devDependencies": {
"@playwright/test": "^1.55.1",
"playwright": "^1.56.1"
}
}