@nichoth/replicache-supabase
Version:
Use replicache with supabase
81 lines (80 loc) • 2.31 kB
JSON
{
"name": "@nichoth/replicache-supabase",
"description": "Use replicache with supabase",
"type": "module",
"version": "0.0.9",
"main": "dist/index.js",
"scripts": {
"lint": "standardx -v \"./**/*.ts\"",
"test": "esbuild test/index.ts --bundle --platform=node --format=cjs | node | tap-arc",
"build-esm": "mkdir -p ./dist && rm -rf ./dist/* && tsc --project tsconfig.build.json",
"build-cjs": "esbuild --format=cjs --outdir=dist --out-extension:.js=.cjs src/*.ts ",
"build": "npm run build-cjs && npm run build-esm",
"start": "concurrently --kill-others \"npx ntl functions:serve --port=9999 --debug\" \"npx vite\"",
"preversion": "npm run lint",
"postversion": "git push && git push --tags && npm publish",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"import": [
"./dist/*.js",
"./dist/*"
],
"require": [
"./dist/*.cjs",
"./dist/*"
]
}
},
"dependencies": {
"pg-promise": "^11.5.4",
"replicache": "^13.0.1",
"replicache-transaction": "^0.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@netlify/functions": "^2.4.0",
"@nichoth/components": "^0.13.3",
"@nichoth/debug": "^0.2.5",
"@nichoth/tapzero": "^0.8.4",
"@preact/preset-vite": "^2.7.0",
"@preact/signals": "^1.2.1",
"@typescript-eslint/parser": "^5.55.0",
"concurrently": "^8.2.2",
"dotenv": "^16.3.1",
"esbuild": "^0.19.5",
"htm": "^3.1.1",
"netlify-cli": "^17.2.2",
"postcss-nesting": "^12.0.1",
"preact": "^10.19.2",
"route-event": "^4.1.10",
"standardx": "^7.0.0",
"tap-arc": "^1.2.2",
"tape-run": "^11.0.0",
"typescript": "^5.2.2",
"vite": "^5.0.0"
},
"directories": {
"example": "example",
"test": "test"
},
"author": "nichoth <nichoth@gmail.com> (https://nichoth.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nichoth/replicache-supabase.git"
},
"keywords": [
"supabase",
"replicache"
],
"bugs": {
"url": "https://github.com/nichoth/replicache-supabase/issues"
},
"homepage": "https://github.com/nichoth/replicache-supabase#readme"
}