sin-supabase / package.json
Jeremy
implement bootstrap.apply action
b2bbc55
Raw
History Blame Contribute Delete
650 Bytes
{
"name": "@sin-solver/sin-supabase",
"version": "0.1.0",
"private": true,
"type": "module",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"sin-supabase": "dist/src/cli.js"
},
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && node scripts/postbuild.mjs",
"typecheck": "tsc --noEmit -p tsconfig.json",
"start:a2a": "node dist/src/cli.js serve-a2a",
"start:mcp": "node dist/src/cli.js serve-mcp"
},
"dependencies": {
"@modelcontextprotocol/sdk": "latest",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^24.3.0",
"typescript": "^5.9.3"
}
}