package.json•1.85 kB
{
"name": "@lark-base-open/mcp-node-server",
"version": "0.0.1-alpha.3",
"description": "Base MCP Server",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/Lark-Base-Team/lark-base-mcp-node-server"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": "dist/index.js",
"scripts": {
"dev": "NODE_ENV=development npm run build && node ./dist/index.sse.js",
"start": "NODE_ENV=production node ./dist/index.js",
"test": "vitest run",
"test:watch": "vitest --watch",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"clean": "rm -rf dist",
"build": "tsc --project tsconfig.build.json && shx chmod +x dist/index.js",
"build:watch": "nodemon --watch src --ext ts --exec \"npm run build\"",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@lark-base-open/node-sdk": "^1.0.1",
"@larksuiteoapi/node-sdk": "^1.46.0",
"@modelcontextprotocol/sdk": "^1.10.2",
"commander": "^13.1.0",
"date-fns": "^4.1.0",
"express": "^5.1.0",
"lodash.get": "^4.4.2",
"lodash.pick": "^4.4.0",
"node-fetch": "^3.3.2",
"uuid": "^9.0.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "^0.9.0",
"@tsconfig/node-lts": "^20.1.3",
"@types/express": "^5.0.1",
"@types/lodash.get": "^4.4.9",
"@types/lodash.pick": "^4.4.9",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.2",
"eslint-plugin-prettier": "^5.2.6",
"nodemon": "^3.1.7",
"prettier": "^3.5.3",
"shx": "^0.3.4",
"typescript": "^5.7.2",
"vitest": "^3.0.7",
"zod-to-json-schema": "^3.24.5"
}
}