package.jsonโข1.75 kB
{
"name": "@coa/goldfish-mcp",
"version": "1.1.0",
"description": "Short-term memory MCP server for AI agents - simple JSON file storage with auto-expiration",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"test": "jest",
"lint": "eslint src/**/*.ts",
"clean": "rm -rf dist",
"migrate:storage": "tsx scripts/migrate-storage.ts",
"cleanup:memory": "tsx scripts/cleanup-memory-files.ts"
},
"keywords": [
"mcp",
"memory",
"ai-agent",
"short-term",
"goldfish"
],
"author": "COA Development Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"fs-extra": "^11.2.0",
"fuse.js": "^7.1.0",
"uuid": "^10.0.0"
},
"optionalDependencies": {
"@coa/mcp-vscode-bridge": "^1.1.8"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"jest-junit": "^16.0.0",
"ts-jest": "^29.2.5",
"tsx": "^4.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/anortham/coa-goldfish-mcp.git"
},
"bugs": {
"url": "https://github.com/anortham/coa-goldfish-mcp/issues"
},
"homepage": "https://github.com/anortham/coa-goldfish-mcp#readme",
"overrides": {
"glob": "^10.0.0",
"rimraf": "^5.0.0",
"inflight": "npm:@types/node@*",
"babel-plugin-istanbul": "^7.0.0",
"test-exclude": "^7.0.0"
}
}