initial-commit

This commit is contained in:
nicwands
2026-02-27 17:08:23 -05:00
commit 904d3ac8f0
8 changed files with 2093 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "@takerofnotes/plugin-supabase",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/nicwands/takerofnotes-plugin-supabase.git"
},
"type": "module",
"main": "dist/index.js",
"exports": "./dist/index.js",
"scripts": {
"build": "rollup -c",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"author": "nicwands",
"license": "MIT",
"description": "Supabase storage plugin for Taker of Notes",
"dependencies": {
"@supabase/supabase-js": "^2.98.0",
"@takerofnotes/plugin-sdk": "^0.2.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"rollup": "^4.59.0",
"vitest": "^4.0.18"
}
}