22 lines
596 B
JSON
22 lines
596 B
JSON
{
|
|
"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"
|
|
}
|
|
}
|