package.json•2.31 kB
{
"name": "captaindata-mcp",
"version": "1.0.0",
"description": "Captain Data MCP API",
"main": "index.ts",
"scripts": {
"start": "ts-node index.ts",
"dev": "ts-node-dev --respawn index.ts",
"build": "npm run generate:openapi && npm run generate:openapi:gpt && tsc",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:health": "jest health.test.ts",
"test:introspect": "jest introspect.test.ts",
"test:auth": "jest authentication.test.ts",
"test:tools": "jest tools.test.ts",
"test:integration": "jest integration.test.ts",
"test:docs": "jest docs.test.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"type-check": "tsc --noEmit",
"prestart": "npm run type-check",
"generate:openapi": "ts-node scripts/generate-openapi.ts",
"generate:openapi:gpt": "ts-node scripts/generate-openapi-gpt.ts"
},
"keywords": [
"mcp",
"model-context-protocol",
"captain-data",
"linkedin",
"api",
"fastify",
"typescript",
"chatgpt",
"ai-assistant"
],
"author": "Captain Data",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/captaindata/captaindata-mcp.git"
},
"bugs": {
"url": "https://github.com/captaindata/captaindata-mcp/issues"
},
"homepage": "https://github.com/captaindata/captaindata-mcp#readme",
"dependencies": {
"@fastify/cors": "^10.0.0",
"@fastify/rate-limit": "^10.0.0",
"@fastify/swagger": "^9.0.0",
"@fastify/swagger-ui": "^5.2.3",
"@sentry/node": "^10.2.0",
"@types/json-schema": "^7.0.15",
"axios": "^1.6.2",
"dotenv": "^16.3.1",
"fastify": "^5.4.0",
"fastify-plugin": "^5.0.1",
"ioredis": "^5.7.0"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.2"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.test.ts"
],
"moduleNameMapper": {
"^@/(.*)$": "<rootDir>/src/$1"
}
}
}