package.json•1.94 kB
{
"name": "java-class-analyzer-mcp-server",
"version": "1.0.1",
"description": "MCP server for Java class file analysis and decompilation",
"main": "dist/index.js",
"bin": {
"java-class-analyzer-mcp": "dist/cli.js"
},
"type": "module",
"files": [
"dist/**/*",
"lib/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"prepublishOnly": "npm run build",
"prepack": "npm run build",
"publish:npm": "npm publish",
"publish:beta": "npm publish --tag beta",
"version:patch": "npm version patch",
"version:minor": "npm version minor",
"version:major": "npm version major"
},
"keywords": [
"mcp",
"java",
"decompilation",
"class-analyzer",
"model-context-protocol",
"java-decompiler",
"maven",
"dependency-analysis"
],
"author": "handsomestWei",
"license": "Apache License 2.0",
"repository": {
"type": "git",
"url": "https://github.com/handsomestWei/java-class-analyzer-mcp-server.git"
},
"homepage": "https://github.com/handsomestWei/java-class-analyzer-mcp-server#readme",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.4.0",
"commander": "^11.1.0",
"fs-extra": "^11.2.0",
"xml2js": "^0.6.2",
"archiver": "^6.0.1",
"yauzl": "^3.0.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/fs-extra": "^11.0.4",
"@types/xml2js": "^0.4.14",
"@types/archiver": "^6.0.2",
"@types/yauzl": "^2.10.3",
"typescript": "^5.3.0",
"tsx": "^4.6.0",
"jest": "^29.7.0",
"@types/jest": "^29.5.8"
}
}