package.json•1.04 kB
{
"name": "attendee-mcp",
"version": "1.1.0",
"description": "Meeting Bot MCP Server for recording and transcribing meetings",
"type": "module",
"main": "dist/index.js",
"bin": {
"attendee-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"prepare": "npm run build",
"health": "node health.js"
},
"keywords": [
"mcp",
"meeting",
"bot",
"transcription",
"recording",
"zoom",
"google-meet"
],
"author": "Rex Posadas",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@types/node": "^20.19.0",
"@types/node-fetch": "^2.6.12",
"tsx": "^4.19.4",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/**/*",
"README.md",
"CONFIGURATION.md",
"LICENSE"
],
"types": "./dist/index.d.ts"
}