UNPKG

@supabase-cache-helpers/storage-core

Version:

A collection of cache utilities for working with the Supabase Storage API. It is not meant to be used standalone.

51 lines 1.3 kB
{ "name": "@supabase-cache-helpers/storage-core", "version": "0.1.6", "keywords": [ "Storage", "Supabase" ], "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/psteinroe/supabase-cache-helpers.git", "directory": "packages/storage-fetcher" }, "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" }, "devDependencies": { "@supabase/storage-js": "2.89.0", "@supabase/supabase-js": "2.89.0", "@vitest/coverage-istanbul": "4.0.16", "dotenv": "17.2.3", "happy-dom": "20.0.11", "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" }, "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" } }