@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.
49 lines • 1.22 kB
JSON
{
"name": "@supabase-cache-helpers/storage-core",
"version": "0.1.5",
"type": "module",
"main": "./dist/index.js",
"source": "./src/index.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"types": "./dist/index.d.ts",
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/psteinroe/supabase-cache-helpers.git",
"directory": "packages/storage-fetcher"
},
"keywords": [
"Supabase",
"Storage"
],
"publishConfig": {
"access": "public"
},
"license": "MIT",
"devDependencies": {
"happy-dom": "17.6.1",
"@supabase/storage-js": "2.7.1",
"@supabase/supabase-js": "2.50.0",
"@vitest/coverage-istanbul": "^3.0.0",
"dotenv": "16.6.0",
"tsup": "8.5.0",
"typescript": "5.8.3",
"vitest": "3.2.0",
"@supabase-cache-helpers/tsconfig": "0.0.0"
},
"scripts": {
"build": "tsup",
"test": "vitest --coverage",
"clean": "rm -rf .turbo && rm -rf coverage && rm -rf .nyc_output && rm -rf node_modules && rm -rf dist",
"typecheck": "tsc --pretty --noEmit"
}
}