package.json•1.17 kB
{
"name": "akave-mcp-js",
"version": "1.0.8",
"description": "Model Control Protocol (MCP) server for Akave's S3-compatible storage",
"type": "module",
"main": "dist/index.js",
"bin": {
"akave-mcp-js": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Abhay-2811/akave-mcp.git"
},
"scripts": {
"clean": "rm -rf dist",
"build": "npm run clean && tsc && chmod +x dist/index.js",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"test": "jest",
"prepublishOnly": "npm run build"
},
"files": [
"dist",
"package.json",
"README.md"
],
"keywords": [
"akave",
"mcp",
"s3",
"storage",
"cli"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"@aws-sdk/s3-request-presigner": "^3.0.0",
"@modelcontextprotocol/sdk": "^1.11.2",
"dotenv": "^16.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"jest": "^29.0.0",
"ts-jest": "^29.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=16.0.0"
}
}