forked from kindfi-org/kindfi
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 945 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"author": "kindfi",
"description": "supabase module for kindfi",
"devDependencies": {
"supabase": "^2.0.0",
"supabase-to-zod": "1.0.5"
},
"license": "MIT",
"main": "./src/index.ts",
"name": "@services/supabase",
"private": true,
"scripts": {
"db:pull": "supabase db pull --local",
"db:push": "supabase db push --local",
"gen": "bun run types && bun run schemas",
"gen:remote": "bun run types:remote && bun run schemas",
"migrate": "supabase migration up",
"reset": "supabase db reset",
"schemas": "supabase-to-zod --input src/database.types.ts --output src/database.schemas.ts",
"start": "supabase start",
"status": "supabase status",
"stop": "supabase stop",
"types": "supabase gen types typescript --local > src/database.types.ts",
"types:remote": "supabase gen types typescript --project-id ${PROJECT_ID} > src/database.types.ts"
},
"type": "module",
"types": "./src/index.ts",
"version": "0.0.1"
}