Files
pocketbase-mcp/package.json
Breno Yano 9245eb7bf2 feat(migrations): implement PocketBase migration management system
Add migration file generation with timestamped filenames
Create tools for applying and reverting migrations
Implement template generation for common schema operations
Support collection creation and field addition migrations
Add execution logic for running migrations against PocketBase instances
2025-04-07 23:52:12 -03:00

23 lines
500 B
JSON

{
"name": "pocketbase-mcp",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc && chmod +x build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.7.0",
"@types/node": "^22.13.10",
"axios": "^1.8.3",
"pocketbase": "^0.25.2",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
}
}