package.json•2.03 kB
{
"name": "civo-mcp",
"version": "0.1.6",
"description": "MCP server for Civo cloud platform API integration",
"license": "MIT",
"author": "Jintao Zhang",
"homepage": "https://github.com/tao12345666333/civo-mcp",
"bugs": "https://github.com/tao12345666333/civo-mcp/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/tao12345666333/civo-mcp.git"
},
"funding": "https://github.com/tao12345666333",
"keywords": [
"civo",
"mcp",
"cloud",
"api",
"server"
],
"type": "module",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"bin": {
"mcp-server-civo": "dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.test.js",
"!dist/**/*.test.d.ts",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:ci": "npm run build && NODE_ENV=test jest --ci --coverage --watchAll=false dist/",
"lint": "eslint src/ --ext .ts",
"lint:fix": "eslint src/ --ext .ts --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"precommit": "npm run lint && npm run format:check && npm run test",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"dotenv": "^17.2.0"
},
"devDependencies": {
"@babel/preset-env": "^7.28.0",
"@babel/preset-typescript": "^7.27.1",
"@eslint/js": "^9.0.0",
"@types/jest": "^30.0.0",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"babel-jest": "^30.0.4",
"eslint": "^9.0.0",
"jest": "^30.0.4",
"prettier": "^3.0.0",
"shx": "^0.4.0",
"ts-jest": "^29.4.0",
"typescript": "^5.6.2"
}
}