package.json•2.67 kB
{
"name": "myai-memory-sync",
"version": "1.0.0",
"description": "MCP server to synchronize memory template across Claude interfaces",
"main": "dist/direct-index.js",
"type": "module",
"bin": {
"myai-sync": "dist/cli.js",
"myai-memory-sync": "dist/direct-index.js",
"myai-memory-sync-http": "dist/direct-server.js",
"myai-safe": "dist/safe-cli.js",
"myai": "dist/unified-cli.js"
},
"scripts": {
"start": "node dist/unified-cli.js server",
"start:http": "node dist/unified-cli.js server --transport http",
"start:direct": "node dist/unified-cli.js server --direct",
"start:direct:http": "node dist/unified-cli.js server --direct --transport http",
"dev": "DEBUG=true nodemon --watch 'src/**/*.ts' --exec 'node --loader ts-node/esm' src/unified-cli.ts server",
"dev:http": "DEBUG=true nodemon --watch 'src/**/*.ts' --exec 'node --loader ts-node/esm' src/unified-cli.ts server --transport http",
"build:watch": "tsc -w",
"build": "tsc --skipLibCheck --project tsconfig.direct.json",
"build:full": "tsc",
"lint": "eslint 'src/**/*.ts'",
"typecheck": "tsc --noEmit",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"sync": "node dist/unified-cli.js sync",
"sync:emergency": "node dist/unified-cli.js sync --emergency",
"remember": "node dist/unified-cli.js remember",
"presets:list": "node dist/unified-cli.js presets list",
"presets:load": "node dist/unified-cli.js presets load",
"presets:create": "node dist/unified-cli.js presets create",
"safe": "chmod +x ./safe-memory.sh && ./safe-memory.sh",
"safe:sync": "chmod +x ./safe-memory.sh && ./safe-memory.sh sync",
"safe:backup": "chmod +x ./safe-memory.sh && ./safe-memory.sh backup",
"safe:list": "chmod +x ./safe-memory.sh && ./safe-memory.sh list-backups"
},
"keywords": [
"claude",
"memory",
"sync",
"template",
"mcp"
],
"author": "",
"license": "ISC",
"dependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@modelcontextprotocol/sdk": "^1.7.0",
"chalk": "^5.3.0",
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"node-fetch": "^3.3.2",
"puppeteer": "^24.4.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.17.24",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}