Files
crawlab/mcp/package.json

48 lines
1.4 KiB
JSON

{
"name": "@crawlab/mcp",
"version": "0.1.0",
"description": "MCP server for interacting with Crawlab web crawler management platform",
"license": "MIT",
"author": "Crawlab Team",
"type": "module",
"bin": {
"mcp-server-crawlab": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"prebuild": "node -p \"'export const packageVersion = ' + JSON.stringify(require('./package.json').version) + ';\\r'\" > src/version.ts",
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "shx rm -rf dist",
"test": "jest --passWithNoTests"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.2",
"axios": "^1.6.7",
"tailwindcss": "^4.1.10",
"zod": "^3.25.63",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.14.0",
"@types/jest": "^29.5.14",
"@types/node": "^22",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.5.3",
"shx": "^0.4.0",
"ts-jest": "^29.4.0",
"typescript": "^5.8.3"
},
"packageManager": "pnpm@10.12.1"
}