package.json•1.13 kB
{
"name": "sun-mcp",
"version": "1.0.1",
"description": "MCP server for summarizing agent sessions with -sun command. Supports Chinese and English summaries.",
"main": "dist/server.js",
"type": "module",
"bin": {
"sun-mcp": "dist/server.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsc --watch & node --watch dist/server.js",
"clean": "rm -rf dist",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"agent",
"summarizer",
"session",
"sun",
"multilingual",
"claude"
],
"author": "ChenYCL",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ChenYCL/sun-mcp.git"
},
"homepage": "https://github.com/ChenYCL/sun-mcp#readme",
"bugs": {
"url": "https://github.com/ChenYCL/sun-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"fs-extra": "^11.2.0",
"date-fns": "^3.6.0"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/fs-extra": "^11.0.4",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}