Files
cortex/package.json
omigamedev 08c26754a8 Add Cortex Portal — web visualization for knowledge graph
Express API server wrapping existing store/graph core with REST endpoints
for nodes, edges, graph, and search. React + Vite portal with React Flow
for interactive graph visualization, Tailwind CSS styling, and full CRUD UI
(sidebar, node panel, add/link modals, search bar, toast notifications).
2026-02-02 17:01:29 +01:00

34 lines
768 B
JSON

{
"name": "cortex",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"serve": "node dist/server/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "AI project memory - knowledge graph backed by SQLite + Ollama embeddings",
"bin": {
"memory": "./dist/cli/index.js"
},
"dependencies": {
"better-sqlite3": "^12.6.2",
"chalk": "^4.1.2",
"commander": "^14.0.3",
"cors": "^2.8.6",
"express": "^5.2.1",
"uuid": "^13.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.2.0",
"@types/uuid": "^10.0.0",
"typescript": "^5.9.3"
}
}