package.json•706 B
{
"name": "instantdb-server",
"version": "0.1.0",
"description": "An MCP server for interacting with InstantDB",
"private": true,
"type": "module",
"bin": {
"instantdb-server": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@instantdb/admin": "^0.17.26",
"@instantdb/core": "^0.17.26",
"@modelcontextprotocol/sdk": "1.0.1"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
}
}