mirror of
https://github.com/supabase/supabase.git
synced 2026-05-06 08:56:46 -04:00
33 lines
908 B
JSON
33 lines
908 B
JSON
{
|
|
"name": "@supabase/pg-meta",
|
|
"version": "0.0.0",
|
|
"license": "MIT",
|
|
"author": "Supabase",
|
|
"main": "./src/index.ts",
|
|
"repository": "supabase/supabase",
|
|
"scripts": {
|
|
"preinstall": "npx only-allow pnpm",
|
|
"clean": "rimraf node_modules .turbo tsconfig.tsbuildinfo",
|
|
"test": "run-s db:clean db:run test:run db:clean",
|
|
"db:clean": "cd test/db && docker compose down",
|
|
"db:run": "cd test/db && docker compose up --detach --wait",
|
|
"test:run": "vitest run --coverage",
|
|
"test:update": "vitest run --update",
|
|
"lint": "tsc --noEmit",
|
|
"typecheck": "tsc --noEmit"
|
|
},
|
|
"dependencies": {
|
|
"zod": "catalog:"
|
|
},
|
|
"devDependencies": {
|
|
"@types/pg": "^8.11.11",
|
|
"@vitest/coverage-v8": "^3.2.0",
|
|
"npm-run-all": "^4.1.5",
|
|
"pg": "^8.13.1",
|
|
"postgres-array": "^3.0.2",
|
|
"typescript": "catalog:",
|
|
"vite": "catalog:",
|
|
"vitest": "catalog:"
|
|
}
|
|
}
|