package.json•1.43 kB
{
"name": "ai-ops-hub",
"version": "0.1.0",
"description": "MCP server with RAG for developer operations",
"main": "dist/server.js",
"type": "module",
"scripts": {
"dev": "tsx src/server.ts",
"dev:http": "tsx src/server.ts --http",
"start": "node dist/server.js",
"start:http": "HTTP_PORT=3333 node dist/server.js",
"build": "tsc",
"test": "vitest",
"test:unit": "vitest test/unit",
"test:integration": "vitest test/integration",
"test:http": "node test/test-http-api.js",
"test:rag": "node test/test-rag-integration.js",
"test:vector-rag": "node test/test-vector-rag.js",
"test:vector-rag-v2": "node test/test-vector-rag-v2.js",
"lint": "eslint src/**/*.ts",
"type-check": "tsc --noEmit"
},
"keywords": [
"mcp",
"rag",
"ai",
"operations"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^1.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"axios": "^1.6.0",
"better-sqlite3": "^12.2.0",
"cheerio": "^1.0.0",
"dotenv": "^16.0.0",
"neverthrow": "^8.2.0",
"node-fetch": "^3.3.0",
"openai": "^4.0.0",
"zod": "^4.0.17"
},
"engines": {
"node": ">=20.0.0"
}
}