UNPKG

mcp-harbor

Version:

A Node.js application for connecting to Harbor and providing operations capabilities.

59 lines (58 loc) 1.47 kB
{ "name": "mcp-harbor", "version": "1.0.1", "description": "A Node.js application for connecting to Harbor and providing operations capabilities.", "type": "module", "bin": { "mcp-harbor": "./dist/app.js" }, "files": [ "dist", "README.md" ], "scripts": { "test": "jest", "test:coverage": "jest --coverage", "build": "tsc && cp package.json dist/ && chmod +x dist/app.js", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix" }, "keywords": [ "harbor", "mcp", "model-context-protocol", "typescript" ], "repository": { "type": "git", "url": "git+https://github.com/nomagicln/mcp-harbor.git" }, "author": "nomagicln", "license": "MIT", "bugs": { "url": "https://github.com/nomagicln/mcp-harbor/issues" }, "homepage": "https://github.com/nomagicln/mcp-harbor#readme", "dependencies": { "@hapic/harbor": "^2.5.0", "@modelcontextprotocol/sdk": "^1.7.0", "axios": "^1.6.7", "dotenv": "^16.4.7", "express": "^4.18.2", "hapic": "^2.5.2", "yargs": "^17.7.2" }, "devDependencies": { "@types/express": "^4.17.13", "@types/jest": "^29.5.12", "@types/node": "^16.18.126", "@typescript-eslint/eslint-plugin": "^7.2.0", "@typescript-eslint/parser": "^7.2.0", "eslint": "^8.57.0", "jest": "^29.7.0", "ts-jest": "^29.2.6", "ts-node": "^10.9.2", "tslib": "^2.8.1", "typescript": "^4.9.5" } }