@lowdefy/plugin-aws
Version:
To securely upload files to S3, the `S3UploadButton` or `S3UploadPhoto` blocks can be used. S3 file downloads can be done by getting a presigned URL using a `AwsS3PresignedGetObject` request and opening the URL in a new tab which will result in the browse
75 lines • 1.92 kB
JSON
{
"name": "@lowdefy/plugin-aws",
"version": "4.4.0",
"license": "Apache-2.0",
"description": "",
"homepage": "https://lowdefy.com",
"keywords": [
"lowdefy",
"lowdefy plugin"
],
"bugs": {
"url": "https://github.com/lowdefy/lowdefy/issues"
},
"contributors": [
{
"name": "Sam Tolmay",
"url": "https://github.com/SamTolmay"
},
{
"name": "Gerrie van Wyk",
"url": "https://github.com/Gervwyk"
},
{
"name": "Stephanie Smit",
"url": "https://github.com/StephanieJKS"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lowdefy/lowdefy.git"
},
"type": "module",
"exports": {
"./*": "./dist/*",
"./connections/*": "./dist/connections/*",
"./blocks": "./dist/blocks.js",
"./types": "./dist/types.js"
},
"files": [
"dist/*"
],
"dependencies": {
"@lowdefy/block-utils": "4.4.0",
"@lowdefy/blocks-antd": "4.4.0",
"@lowdefy/helpers": "4.4.0",
"antd": "4.24.14",
"aws-sdk": "2.1459.0",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@emotion/jest": "11.10.5",
"@lowdefy/ajv": "4.4.0",
"@lowdefy/block-dev": "4.4.0",
"@lowdefy/jest-yaml-transform": "4.4.0",
"@swc/cli": "0.1.63",
"@swc/core": "1.3.99",
"@swc/jest": "0.2.29",
"@testing-library/dom": "8.19.1",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.4.3",
"copyfiles": "2.4.1",
"jest": "28.1.3",
"jest-environment-jsdom": "28.1.3",
"jest-serializer-html": "7.1.0"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "swc src --out-dir dist --config-file ../../../../.swcrc --delete-dir-on-start --copy-files",
"clean": "rm -rf dist",
"copyfiles": "copyfiles -u 1 \"./src/**/*\" dist -e \"./src/**/*.js\" -e \"./src/**/*.yaml\" -e \"./src/**/*.snap\""
}
}