@supabase-cache-helpers/postgrest-core
Version:
A collection of cache utilities for working with the Supabase REST API. It is not meant to be used standalone.
62 lines • 1.56 kB
JSON
{
"name": "@supabase-cache-helpers/postgrest-core",
"version": "0.13.1",
"keywords": [
"Cache",
"PostgREST",
"Supabase"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/psteinroe/supabase-cache-helpers.git",
"directory": "packages/postgrest-shared"
},
"source": "./src/index.ts",
"files": [
"dist/**"
],
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"fast-equals": "5.4.0",
"flat": "6.0.1",
"merge-anything": "5.1.7",
"xregexp": "5.1.2"
},
"devDependencies": {
"@supabase/postgrest-js": "2.90.0",
"@supabase/supabase-js": "2.90.0",
"@types/flat": "5.0.5",
"@types/lodash": "4.17.21",
"@vitest/coverage-istanbul": "4.0.16",
"dotenv": "17.2.3",
"tsup": "8.5.1",
"typescript": "5.9.3",
"vitest": "4.0.16",
"@supabase-cache-helpers/oxlint-config": "0.0.0",
"@supabase-cache-helpers/typescript": "0.0.0"
},
"peerDependencies": {
"@supabase/postgrest-js": "^1.19.4 || ^2.0.0"
},
"scripts": {
"build": "tsup",
"clean": "rm -rf .turbo && rm -rf coverage && rm -rf .nyc_output && rm -rf node_modules && rm -rf dist",
"lint": "oxlint",
"test": "vitest --coverage",
"typecheck": "tsc --pretty --noEmit"
}
}