UNPKG

ll-callmobile-backend

Version:

VoIP Mobile Communications Backend with Supabase, Drizzle ORM, and Dynamic Querying - Deployable as Cloudflare Worker

78 lines (77 loc) 2 kB
{ "name": "ll-callmobile-backend", "version": "1.0.2", "description": "VoIP Mobile Communications Backend with Supabase, Drizzle ORM, and Dynamic Querying - Deployable as Cloudflare Worker", "main": "dist/index.js", "module": "dist/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.js", "types": "./dist/index.d.ts" }, "./worker": { "import": "./dist/worker.js", "require": "./dist/worker.js", "types": "./dist/worker.d.ts" } }, "files": [ "dist/**/*", "README.md", "USAGE.md" ], "scripts": { "build": "tsc", "dev": "tsc --watch", "deploy": "wrangler deploy", "db:generate": "drizzle-kit generate:pg", "db:migrate": "drizzle-kit push:pg", "db:studio": "drizzle-kit studio", "prepublishOnly": "npm run build" }, "keywords": [ "voip", "supabase", "drizzle", "typescript", "cloudflare-workers", "hono", "api", "backend", "dynamic-querying", "database-query-builder" ], "author": "LivaLive Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/andrepainha-acolad/callmobile_backend.git" }, "bugs": { "url": "https://github.com/andrepainha-acolad/callmobile_backend/issues" }, "homepage": "https://github.com/andrepainha-acolad/callmobile_backend#readme", "engines": { "node": ">=18.0.0" }, "dependencies": { "@supabase/supabase-js": "^2.39.0", "cors": "^2.8.5", "drizzle-orm": "^0.29.0", "express": "^4.18.0", "hono": "^3.0.0", "postgres": "^3.4.0" }, "devDependencies": { "@types/node": "^20.10.0", "@cloudflare/workers-types": "^4.0.0", "drizzle-kit": "^0.20.0", "typescript": "^5.3.0", "wrangler": "^3.0.0" }, "peerDependencies": { "@cloudflare/workers-types": "^4.0.0" } }