package.json•1.44 kB
{
"name": "clipboard-to-supabase-mcp-helper",
"version": "0.1.0",
"description": "A local agent that monitors the system clipboard, uploads images to Supabase Storage, and writes the URL back to clipboard",
"main": "dist/server.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"start:http": "node dist/server-http.js",
"dev": "tsc-watch --onSuccess \"node dist/server.js\"",
"dev:http": "tsc-watch --onSuccess \"node dist/server-http.js\"",
"install:macos": "node scripts/install-macos.js",
"install:linux": "node scripts/install-linux.js",
"install:windows": "node scripts/install-windows.js",
"test:supabase": "node scripts/test-supabase.js"
},
"keywords": [
"clipboard",
"supabase",
"mcp",
"image-upload"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.1",
"@supabase/supabase-js": "^2.39.3",
"clipboardy": "^4.0.0",
"dotenv": "^16.3.1",
"express": "^5.1.0",
"img-clipboard": "^1.1.0",
"lodash.debounce": "^4.0.8",
"uuid": "^9.0.1",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/express": "^5.0.1",
"@types/img-clipboard": "^1.1.2",
"@types/lodash.debounce": "^4.0.9",
"@types/node": "^20.17.46",
"@types/uuid": "^9.0.7",
"tsc-watch": "^6.0.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}