client-mcp/package.json
2025-06-11 10:42:40 +05:30

69 lines
1.7 KiB
JSON

{
"name": "client-mcp",
"version": "0.1.0",
"description": "A TypeScript client for interacting with MCP services",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm run test",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "eslint src --ext .ts",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch"
},
"keywords": [
"gemini",
"openai",
"mcp",
"typescript",
"client",
"api"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/kroy665/client-mcp.git"
},
"bugs": {
"url": "https://github.com/kroy665/client-mcp/issues"
},
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.53.0",
"@modelcontextprotocol/sdk": "^1.12.1",
"cross-fetch": "^3.1.5",
"openai": "^5.1.1"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/mocha": "^10.0.10",
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.0.0",
"jest-mock-extended": "^4.0.0-beta1",
"prettier": "^3.0.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}