package.json•2.1 kB
{
"name": "jobnimbus-mcp-client",
"version": "1.0.2",
"description": "JobNimbus MCP Client - Connect Claude Desktop to remote JobNimbus MCP server",
"main": "dist/index.js",
"type": "module",
"bin": {
"jobnimbus-mcp-client": "./bin/mcp-client.js"
},
"files": [
"bin/",
"dist/",
"README.md"
],
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"start:prod": "NODE_ENV=production node dist/index.js",
"test": "jest",
"test:unit": "jest tests/unit",
"test:integration": "jest tests/integration",
"test:e2e": "RUN_E2E_TESTS=true jest tests/e2e",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:verbose": "jest --verbose",
"test:attachments": "jest tests/unit/getAttachments.test.ts tests/unit/analyzeJobAttachments.test.ts",
"test:cache": "tsx scripts/test-cache.ts",
"test:all": "npm run test:unit && npm run test:integration",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist coverage"
},
"keywords": [
"mcp",
"jobnimbus",
"remote-server",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/node": "^20.19.19",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"helmet": "^7.1.0",
"ioredis": "^5.8.1",
"typescript": "^5.9.3",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@types/nock": "^10.0.3",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nock": "^14.0.10",
"supertest": "^7.1.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"tsx": "^4.7.0"
}
}