supafly
Version:
Supafly is a CLI tool for deploying Supabase to fly.io
54 lines (53 loc) • 1.26 kB
JSON
{
"name": "supafly",
"version": "1.0.10",
"description": "Supafly is a CLI tool for deploying Supabase to fly.io",
"keywords": [
"supabase",
"fly.io",
"supafly"
],
"license": "ISC",
"author": "@nicholsaoxford",
"type": "module",
"main": "dist/index.js",
"bin": {
"supa": "dist/index.js"
},
"files": [
"dist",
"src/auth/Dockerfile",
"src/database/Dockerfile",
"src/database/pg_hba.conf",
"src/kong/Dockerfile",
"src/kong/kong.yml",
"src/pg-rest/Dockerfile",
"src/studio/Dockerfile"
],
"scripts": {
"build": "npx tsc",
"start": "bun dist/index.js",
"skip": "bun src/index.ts -y -r lax --org supabased ",
"dev": "bun --watch src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@inquirer/prompts": "^5.3.8",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"figlet": "^1.7.0",
"fly-admin": "^1.6.1",
"njwt": "^2.0.1",
"ora": "^8.0.1",
"pg": "^8.12.0",
"random-words": "^2.0.0",
"secure-random": "^1.1.2"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "^20.10.5",
"@types/pg": "^8.11.5",
"@types/secure-random": "^1.1.3",
"typescript": "^5.5.4"
}
}