package.json•1.33 kB
{
"name": "jobnimbus-mcp-remote",
"version": "1.0.0",
"description": "JobNimbus MCP Server - Remote access for multiple Claude Desktop clients",
"main": "dist/index.js",
"type": "module",
"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:watch": "jest --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"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",
"typescript": "^5.9.3",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.7.0"
}
}