This commit is contained in:
2026-04-18 23:11:35 +02:00
commit f7cfd2a86e
196 changed files with 35538 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"name": "@chat-app/db-types",
"version": "0.1.0",
"private": true,
"description": "Generated Supabase database types (output of `supabase gen types typescript`)",
"type": "module",
"main": "./src/index.ts",
"types": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"scripts": {
"build": "tsc -b",
"dev": "tsc -b --watch",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit",
"test": "echo \"no tests\" && exit 0",
"clean": "rm -rf dist .turbo *.tsbuildinfo",
"gen": "supabase gen types typescript --local > src/index.ts"
}
}