UNPKG

cntx-ui

Version:

Autonomous Repository Intelligence engine with web UI and MCP server. Unified semantic code understanding, local RAG, and agent working memory.

76 lines (75 loc) 2.11 kB
{ "name": "cntx-ui", "type": "module", "version": "3.1.18", "description": "Autonomous Repository Intelligence engine with web UI and MCP server. Unified semantic code understanding, local RAG, and agent working memory.", "keywords": [ "repository-intelligence", "semantic-code-search", "ai-agent-context", "mcp-server", "local-rag", "tree-sitter", "codebase-indexing", "ai-development", "context-management" ], "repository": { "type": "git", "url": "git+https://github.com/nothingdao/cntx-ui.git" }, "author": "whaleen", "license": "MIT", "main": "dist/server.js", "bin": { "cntx-ui": "./dist/bin/cntx-ui.js" }, "files": [ "dist/", "templates/", "web/dist/", "README.md", "VISION.md" ], "engines": { "node": ">=18.0.0" }, "scripts": { "dev": "ts-node --esm bin/cntx-ui.ts", "build:backend": "tsc && chmod +x dist/bin/cntx-ui.js", "build:web": "cd web && npm install && npm run build", "build": "npm run build:backend && npm run build:web", "check:version-sync": "node scripts/check-version-sync.mjs", "release:ci": "node scripts/release-from-package.mjs", "prepublishOnly": "npm run build", "test:local": "npm pack && npm install -g ./cntx-ui-3.1.0.tgz" }, "dependencies": { "@xenova/transformers": "^2.17.2", "better-sqlite3": "^12.2.0", "glob": "^9.0.0", "tree-sitter": "^0.21.1", "tree-sitter-css": "^0.21.1", "tree-sitter-html": "^0.20.4", "tree-sitter-javascript": "^0.23.1", "tree-sitter-json": "^0.21.0", "tree-sitter-rust": "^0.21.0", "tree-sitter-typescript": "^0.23.2", "umap-js": "^1.4.0", "ws": "^8.13.0" }, "optionalDependencies": { "tree-sitter-legacy": "npm:tree-sitter@^0.20.4", "tree-sitter-sql": "^0.1.0", "tree-sitter-markdown": "^0.7.1", "tree-sitter-toml": "^0.5.1" }, "devDependencies": { "@types/better-sqlite3": "^7.6.13", "@types/glob": "^8.1.0", "@types/node": "^25.3.2", "@types/ws": "^8.18.1", "ts-node": "^10.9.2", "typescript": "^5.9.3" } }