├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .taprc ├── LICENSE ├── README.md ├── package.json ├── plugin.d.ts ├── plugin.js └── test ├── plugin.test.js └── types └── plugin.test-d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/.npmignore -------------------------------------------------------------------------------- /.taprc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/.taprc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/package.json -------------------------------------------------------------------------------- /plugin.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/plugin.d.ts -------------------------------------------------------------------------------- /plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/plugin.js -------------------------------------------------------------------------------- /test/plugin.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/test/plugin.test.js -------------------------------------------------------------------------------- /test/types/plugin.test-d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coopflow/fastify-supabase/HEAD/test/types/plugin.test-d.ts --------------------------------------------------------------------------------