mcp-task-persistence/package.json

51 lines
1.1 KiB
JSON

{
"name": "@lilith/mcp-task-persistence",
"version": "1.1.0",
"description": "MCP server for persisting user prompts across Claude Code sessions, enabling task recovery",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"mcp-task-persistence": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"postbuild": "chmod +x dist/index.js",
"watch": "tsc --watch",
"dev": "tsc --watch",
"prepublishOnly": "npm run build",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"model-context-protocol",
"task-persistence",
"session-recovery",
"claude-code"
],
"author": "3viky",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2"
},
"devDependencies": {
"@lilith/configs": "workspace:*",
"@types/node": "^20.19.28",
"typescript": "^5.9.3",
"tsup": "^8.5.1"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
}
}