| { |
| "name": "@supabase/postgrest-js", |
| "version": "2.110.8", |
| "description": "Isomorphic PostgREST client", |
| "keywords": [ |
| "postgrest", |
| "supabase" |
| ], |
| "homepage": "https://github.com/supabase/supabase-js/tree/master/packages/core/postgrest-js", |
| "bugs": "https://github.com/supabase/supabase-js/issues", |
| "license": "MIT", |
| "author": "Supabase", |
| "files": [ |
| "dist", |
| "src", |
| "migrations", |
| "AGENTS.md" |
| ], |
| "main": "dist/index.cjs", |
| "module": "dist/index.mjs", |
| "types": "dist/index.d.cts", |
| "exports": { |
| ".": { |
| "import": { |
| "types": "./dist/index.d.mts", |
| "default": "./dist/index.mjs" |
| }, |
| "require": { |
| "types": "./dist/index.d.cts", |
| "default": "./dist/index.cjs" |
| } |
| }, |
| "./dist/*": "./dist/*", |
| "./package.json": "./package.json" |
| }, |
| "repository": { |
| "type": "git", |
| "url": "https://github.com/supabase/supabase-js.git", |
| "directory": "packages/core/postgrest-js" |
| }, |
| "dependencies": { |
| "tslib": "2.8.1" |
| }, |
| "devDependencies": { |
| "@jest/types": "^30.0.0", |
| "@types/jest": "30.0.0", |
| "@types/node": "20.19.9", |
| "chokidar-cli": "^3.0.0", |
| "jest": "30.4.2", |
| "prettier": "^3.6.2", |
| "ts-jest": "^29.4.9", |
| "tsdown": "^0.18.0", |
| "tstyche": "^4.3.0", |
| "type-fest": "^4.32.0", |
| "typedoc": "^0.27.9", |
| "typescript": "~5.8.3", |
| "zod": "^3.25.76" |
| }, |
| "engines": { |
| "node": ">=22.0.0" |
| }, |
| "scripts": { |
| "build": "tsdown", |
| "build:watch": "tsdown --watch", |
| "format": "node scripts/format.js", |
| "format:check": "node scripts/format.js check", |
| "docs": "typedoc --options ../../../typedoc.base.mjs src/index.ts --out docs/v2", |
| "docs:json": "typedoc --options ../../../typedoc.base.mjs --json docs/v2/spec.json --excludeExternals src/index.ts", |
| "test:run": "jest --runInBand --coverage -u", |
| "test:smoke": "node test/smoke.cjs && node test/smoke.mjs", |
| "test:types": "tstyche", |
| "test:types:ci": "tstyche --target '4.7,5.5,6.0'", |
| "test:types:watch": "chokidar 'src/**/*.ts' 'test/**/*.ts' -c 'npm run test:types'", |
| "type-check": "tsc --noEmit --project tsconfig.json", |
| "type-check:test": "tsc --noEmit --project tsconfig.test.json" |
| } |
| } |