UNPKG

@supabase-cache-helpers/postgrest-server

Version:

A collection of server-side caching utilities for working with Supabase.

54 lines 1.47 kB
{ "name": "@supabase-cache-helpers/postgrest-server", "version": "0.2.2", "author": "Philipp Steinrötter <philipp@steinroetter.com>", "homepage": "https://supabase-cache-helpers.vercel.app", "bugs": { "url": "https://github.com/psteinroe/supabase-cache-helpers/issues" }, "type": "module", "main": "./dist/index.js", "source": "./src/index.ts", "types": "./dist/index.d.ts", "files": [ "dist/**" ], "publishConfig": { "access": "public" }, "license": "MIT", "keywords": [ "Supabase", "PostgREST", "Cache", "SWR" ], "repository": { "type": "git", "url": "git+https://github.com/psteinroe/supabase-cache-helpers.git", "directory": "packages/postgrest-server" }, "peerDependencies": { "@supabase/postgrest-js": "^1.19.4" }, "devDependencies": { "@supabase/postgrest-js": "1.19.4", "@supabase/supabase-js": "2.50.0", "@vitest/coverage-istanbul": "^3.0.0", "ioredis": "5.6.1", "dotenv": "16.6.0", "tsup": "8.5.0", "typescript": "5.8.3", "vitest": "3.2.0", "@supabase-cache-helpers/tsconfig": "0.0.0" }, "dependencies": { "@supabase-cache-helpers/postgrest-core": "0.12.2" }, "scripts": { "build": "tsup", "test": "vitest --coverage --no-file-parallelism --dangerouslyIgnoreUnhandledErrors", "clean": "rm -rf .turbo && rm -rf .nyc_output && rm -rf node_modules && rm -rf dist", "typecheck": "tsc --pretty --noEmit" } }