package.json•1.99 kB
{
"name": "my-mcp",
"version": "1.0.0",
"description": "Hono-based MCP server for content analysis and Excel integration",
"main": "dist/index.js",
"type": "module",
"bin": {
"my-mcp": "./bin/mcp-analyzer.js"
},
"files": [
"dist/**/*",
"bin/**/*",
"src/**/*",
"scripts/**/*",
"config/**/*",
"tsconfig.json"
],
"scripts": {
"build": "./node_modules/.bin/tsc || npx tsc",
"start": "npm run build && node dist/index.js",
"dev": "tsx watch src/index.ts",
"type-check": "tsc --noEmit",
"install-global": "npm install -g .",
"update-analyzer": "npm update -g my-mcp",
"setup": "node scripts/setup-dependencies.js && node scripts/generate-config.js",
"quick-start": "npm run setup && npm run build && npm start",
"test-enhanced": "npm run build && node scripts/test-enhanced-system.js",
"test-local": "npm run build && npm run test-enhanced",
"test-database-path": "npm run build && node scripts/test-database-path.js",
"validate-env": "node scripts/validate-env-vars.js"
},
"keywords": [
"mcp",
"claude",
"content-analysis",
"excel",
"hono",
"typescript"
],
"author": "Your Team",
"license": "MIT",
"engines": {
"node": ">=18.14.1"
},
"dependencies": {
"@hono/node-server": "^1.19.3",
"@hono/zod-validator": "^0.7.3",
"@modelcontextprotocol/sdk": "^1.18.1",
"@types/cheerio": "^0.22.35",
"@types/mime-types": "^3.0.1",
"cheerio": "^1.1.2",
"dotenv": "^17.2.2",
"exceljs": "^4.4.0",
"file-type": "^21.0.0",
"hono": "^4.9.8",
"mammoth": "^1.11.0",
"mime-types": "^3.0.1",
"pdfjs-dist": "^5.4.149",
"playwright": "^1.55.0",
"winston": "^3.17.0",
"zod": "^4.1.11",
"typescript": "^5.9.2"
},
"devDependencies": {
"@types/node": "^24.5.2",
"tsx": "^4.20.5"
},
"overrides": {
"glob": "^10.4.0",
"rimraf": "^5.0.0",
"inflight": "npm:@isaacs/inflight@^1.0.6"
}
}