UNPKG

deepsource-mcp-server

Version:
86 lines 2.76 kB
{ "name": "deepsource-mcp-server", "version": "1.2.1", "description": "Model Context Protocol server for DeepSource", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "bin": { "deepsource-mcp-server": "./dist/index.js" }, "exports": { ".": { "import": "./dist/index.js", "types": "./dist/index.d.ts" } }, "repository": { "type": "git", "url": "git+https://github.com/sapientpants/deepsource-mcp-server.git" }, "bugs": { "url": "https://github.com/sapientpants/deepsource-mcp-server/issues" }, "lint-staged": { "*.{ts,tsx}": [ "prettier --check", "eslint" ] }, "keywords": [ "deepsource", "mcp", "model-context-protocol" ], "author": "Marc Tremblay <marc.tremblay@gmail.com>", "homepage": "https://github.com/sapientpants/deepsource-mcp-server", "license": "MIT", "dependencies": { "@modelcontextprotocol/sdk": "^1.12.3", "axios": "^1.10.0", "cors": "^2.8.5", "express": "^5.1.0", "zod": "^3.25.64" }, "devDependencies": { "@eslint/js": "^9.29.0", "@types/cors": "^2.8.19", "@types/express": "^5.0.3", "@types/jest": "^29.5.14", "@types/node": "^24.0.1", "@types/supertest": "^6.0.3", "@typescript-eslint/eslint-plugin": "^8.34.0", "@typescript-eslint/parser": "^8.34.0", "eslint": "^9.29.0", "eslint-config-prettier": "^10.1.5", "eslint-plugin-prettier": "^5.4.1", "husky": "^9.1.7", "jest": "^30.0.0", "lint-staged": "^16.1.2", "nock": "^14.0.5", "prettier": "^3.5.3", "supertest": "^7.1.1", "ts-jest": "^29.4.0", "ts-node": "^10.9.2", "ts-node-dev": "^2.0.0", "typescript": "^5.8.3" }, "scripts": { "build": "tsc", "ci": "pnpm run format:check && pnpm run lint && pnpm run check-types && pnpm run build && pnpm run test:coverage", "start": "node --experimental-specifier-resolution=node dist/index.js", "dev": "ts-node-dev --respawn --transpile-only src/index.ts", "watch": "tsc -w", "test": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest", "test:watch": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --watch", "test:coverage": "NODE_ENV=test NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest --coverage", "lint": "eslint . --ext .ts", "lint:fix": "eslint . --ext .ts --fix", "format": "prettier --write \"src/**/*.ts\"", "format:check": "prettier --check \"src/**/*.ts\"", "check-types": "tsc --noEmit", "validate": "pnpm run check-types && pnpm run lint && pnpm run test", "inspect": "npx @modelcontextprotocol/inspector@latest node dist/index.js", "clean": "rm -rf dist" } }