UNPKG

@miuiu/postgrest

Version:
57 lines (56 loc) 1.74 kB
{ "name": "@miuiu/postgrest", "version": "1.3.0", "description": "Isomorphic PostgREST client", "keywords": [ "postgrest" ], "homepage": "https://github.com/y0zong/postgrest-js", "bugs": "https://github.com/y0zong/postgrest-js/issues", "license": "MIT", "author": "Supabase", "files": [ "dist", "src" ], "main": "dist/main/index.js", "module": "dist/module/index.js", "types": "dist/module/index.d.ts", "repository": { "type": "git", "url": "git@github.com:y0zong/postgrest-js.git" }, "scripts": { "clean": "rimraf dist docs/v2", "format": "rome format --write src", "build": "run-s clean format build:*", "build:main": "tsc -p tsconfig.json", "build:module": "tsc -p tsconfig.module.json", "docs": "typedoc src/index.ts --out docs/v2", "docs:json": "typedoc --json docs/v2/spec.json --excludeExternals src/index.ts", "test": "run-s test:types db:clean db:run test:run db:clean", "test:run": "jest --runInBand", "test:update": "run-s db:clean db:run && jest --runInBand --updateSnapshot && run-s db:clean", "test:types": "run-s build:module && tsd --files test/*.test-d.ts", "db:clean": "cd test/db && docker-compose down --volumes", "db:run": "cd test/db && docker-compose up --detach && wait-for-localhost 3000" }, "devDependencies": { "@types/jest": "^27.5.1", "jest": "^28.1.0", "node-abort-controller": "^3.0.1", "npm-run-all": "^4.1.5", "rimraf": "^3.0.2", "rome": "^12.0.0", "semantic-release-plugin-update-version-in-files": "^1.1.0", "ts-jest": "^28.0.3", "tsd": "^0.24.1", "typedoc": "^0.22.16", "typescript": "~4.7", "wait-for-localhost-cli": "^3.0.0" }, "publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/" } }