@hivetechs/hive-ai
Version:
Real-time streaming AI consensus platform with HTTP+SSE MCP integration for Claude Code, VS Code, Cursor, and Windsurf - powered by OpenRouter's unified API
142 lines (141 loc) • 3.99 kB
JSON
{
"name": "@hivetechs/hive-ai",
"version": "1.22.98",
"description": "Real-time streaming AI consensus platform with HTTP+SSE MCP integration for Claude Code, VS Code, Cursor, and Windsurf - powered by OpenRouter's unified API",
"main": "dist/lib/index.js",
"module": "dist/lib/index.js",
"type": "module",
"bin": {
"hive": "./dist/cli.js"
},
"exports": {
".": {
"import": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts"
},
"./cli": "./dist/cli.js",
"./consensus": {
"import": "./dist/lib/consensus.js",
"types": "./dist/lib/consensus.d.ts"
},
"./database": {
"import": "./dist/lib/database.js",
"types": "./dist/lib/database.d.ts"
}
},
"files": [
"dist/auth/**/*",
"dist/cli.*",
"dist/config/**/*",
"dist/core/**/*",
"dist/daemon/**/*",
"dist/lib/**/*",
"dist/mcp/**/*",
"dist/security/**/*",
"dist/storage/**/*",
"dist/subscription/**/*",
"dist/tools/**/*",
"dist/utils/**/*",
"bin/**/*",
"scripts/post-install-setup.js",
"scripts/hive-setup-ide.js",
"scripts/install.sh",
"scripts/install.ps1",
"scripts/installers/**/*",
"templates/**/*",
"README.npm.md",
"LICENSE",
"SIMPLE_SETUP.md",
"CLAUDE_CODE_INTEGRATION.md"
],
"scripts": {
"build": "tsc && npm run build:lib && npm run make-executable",
"build:evaluation": "tsc --project tsconfig.evaluation.json",
"build:lib": "node scripts/build-lib.js",
"make-executable": "node -e \"require('fs').chmodSync('dist/cli.js', '755')\" 2>/dev/null || echo \"Executable permissions set\"",
"dev": "tsc --watch",
"start": "node dist/cli.js",
"test": "echo 'Tests will be added in future releases'",
"clean": "node -e \"require('fs').rmSync('dist', {recursive: true, force: true})\" 2>/dev/null || echo \"Dist cleaned\"",
"prepublishOnly": "npm run clean && npm run build",
"pack:test": "npm pack --dry-run",
"create-test-profiles": "npx tsx evaluation/create_test_profiles.ts",
"test-consensus-models": "npx tsx evaluation/test_consensus_models.ts",
"test-developer-consensus": "npx tsx evaluation/developer_consensus_tester.ts",
"analyze-latest": "npx tsx evaluation/manual_analysis.ts",
"consensus-report": "npx tsx evaluation/consensus_analyzer.ts"
},
"keywords": [
"ai",
"consensus",
"openrouter",
"model-discovery",
"model-search",
"model-comparison",
"streaming",
"real-time",
"http-sse",
"mcp",
"model-context-protocol",
"claude-code",
"vscode",
"cursor",
"windsurf",
"ide-integration",
"llm",
"gpt",
"claude",
"gemini",
"machine-learning",
"artificial-intelligence",
"quickstart",
"unified-setup",
"multi-ide",
"analytics",
"business-intelligence",
"dashboard",
"monitoring",
"reporting",
"insights",
"automation",
"configuration-management",
"yaml",
"json"
],
"author": "HiveTechs Collective <info@hivetechs.io>",
"license": "SEE LICENSE IN LICENSE.md",
"homepage": "https://hivetechs.io",
"repository": {
"type": "git",
"url": "https://github.com/hivetechs-collective/hive.ai.git"
},
"bugs": {
"url": "https://github.com/hivetechs-collective/hive.ai/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"bcrypt": "^6.0.0",
"boxen": "^8.0.1",
"chalk": "^5.4.1",
"commander": "^14.0.0",
"express": "^5.1.0",
"inquirer": "^12.6.3",
"ora": "^8.2.0",
"sqlite": "^5.1.1",
"sqlite3": "^5.1.7",
"uuid": "^11.1.0",
"zod": "^3.25.67"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/express": "^4.17.23",
"@types/inquirer": "^9.0.8",
"@types/node": "^24.0.3",
"@types/uuid": "^10.0.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
},
"postinstall": "node scripts/post-install-setup.js"
}