package.json•1.04 kB
{
"name": "@team-jd/mcp-project-explorer",
"version": "0.1.0",
"description": "An MCP server for exploring project folders and analyzing imports/exports.",
"keywords": ["mcp", "model-context-protocol", "file-explorer", "project-analyzer"],
"author": "Noah Jansky <noah.jansky@outlook.de>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MausRundung362/mcp-explorer.git"
},
"type": "module",
"bin": {
"project-explorer": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"const fs = require('fs'); try { fs.chmodSync('build/index.js', '755'); } catch(e) { console.log('chmod failed:', e.message); }\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"test": "node test-direct.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
},
"devDependencies": {
"@types/node": "^22.15.29",
"typescript": "^5.3.3"
}
}