package.json•2.95 kB
{
"name": "feishu-project-mcp",
"version": "1.1.1",
"description": "Feishu Project MCP Service for end-to-end requirement management and development automation",
"type": "module",
"main": "dist/index.js",
"bin": {
"feishu-project-mcp": "dist/cli.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"clean": "rimraf dist coverage",
"prebuild": "npm run clean",
"start": "node dist/index.js",
"dev": "nodemon --watch 'src/**/*.ts' --exec 'node --loader ts-node/esm' src/index.ts",
"dev:debug": "nodemon --watch 'src/**/*.ts' --exec 'node --inspect --loader ts-node/esm' src/index.ts",
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config jest.config.cjs",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch --config jest.config.cjs",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage --config jest.config.cjs",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky install",
"precommit": "lint-staged",
"postinstall": "husky install"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
]
},
"keywords": [
"feishu",
"mcp",
"project-management",
"automation",
"requirements",
"development"
],
"author": "im47cn <dreambt@gmail.com>",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"axios": "^1.6.2",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"uuid": "^9.0.1",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.10",
"@types/node": "^20.10.3",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"eslint": "^8.55.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.0",
"rimraf": "^5.0.5",
"semantic-release": "^24.2.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/im47cn/feishu-project-mcp.git"
},
"bugs": {
"url": "https://github.com/im47cn/feishu-project-mcp/issues"
},
"homepage": "https://github.com/im47cn/feishu-project-mcp#readme"
}