initial-commit

This commit is contained in:
nicwands
2026-03-25 12:26:26 -04:00
commit 92cebfb4c3
10 changed files with 3835 additions and 0 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "@takerofnotes/plugin-s3",
"version": "0.1.0",
"repository": {
"type": "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": "Taker of Notes storage plugin for S3 compatible object storage",
"dependencies": {
"@aws-sdk/client-s3": "^3.700.0",
"@takerofnotes/plugin-sdk": "^0.4.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^29.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"rollup": "^4.59.0",
"vitest": "^4.0.18"
}
}