package.json•1.4 kB
{
"name": "mcp-server-selfhosted",
"version": "1.0.0",
"description": "MCP Server with self-hosted LLM and Supabase integration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/start.js",
"start:stdio": "node dist/start.js stdio",
"start:http": "node dist/start.js http",
"dev": "tsx src/start.ts",
"dev:stdio": "tsx src/start.ts stdio",
"dev:http": "tsx src/start.ts http",
"test": "jest",
"test:coverage": "jest --coverage",
"test:e2e": "cypress run",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": ["mcp", "llm", "selfhosted", "supabase", "docker"],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"@supabase/supabase-js": "^2.39.0",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/jest": "^29.5.8",
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"cypress": "^13.6.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.2.2"
}
}