mirror of
https://github.com/strapi/strapi.git
synced 2026-01-06 04:03:25 +00:00
66 lines
1.6 KiB
JSON
66 lines
1.6 KiB
JSON
{
|
|
"name": "@strapi/provider-upload-aws-s3",
|
|
"version": "5.23.4",
|
|
"description": "AWS S3 provider for strapi upload",
|
|
"keywords": [
|
|
"upload",
|
|
"aws",
|
|
"s3",
|
|
"strapi"
|
|
],
|
|
"homepage": "https://strapi.io",
|
|
"bugs": {
|
|
"url": "https://github.com/strapi/strapi/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/strapi/strapi.git"
|
|
},
|
|
"license": "SEE LICENSE IN LICENSE",
|
|
"author": {
|
|
"name": "Strapi Solutions SAS",
|
|
"email": "hi@strapi.io",
|
|
"url": "https://strapi.io"
|
|
},
|
|
"maintainers": [
|
|
{
|
|
"name": "Strapi Solutions SAS",
|
|
"email": "hi@strapi.io",
|
|
"url": "https://strapi.io"
|
|
}
|
|
],
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"source": "./src/index.ts",
|
|
"types": "./dist/index.d.ts",
|
|
"files": [
|
|
"dist/"
|
|
],
|
|
"scripts": {
|
|
"build": "run -T npm-run-all clean --parallel build:code build:types",
|
|
"build:code": "run -T rollup -c",
|
|
"build:types": "run -T tsc -p tsconfig.build.json --emitDeclarationOnly",
|
|
"clean": "run -T rimraf ./dist",
|
|
"lint": "run -T eslint .",
|
|
"test:unit": "run -T jest",
|
|
"test:unit:watch": "run -T jest --watch",
|
|
"watch": "run -T rollup -c -w"
|
|
},
|
|
"dependencies": {
|
|
"@aws-sdk/client-s3": "3.600.0",
|
|
"@aws-sdk/lib-storage": "3.433.0",
|
|
"@aws-sdk/s3-request-presigner": "3.433.0",
|
|
"@aws-sdk/types": "3.433.0",
|
|
"lodash": "4.17.21"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "29.5.2",
|
|
"eslint-config-custom": "5.23.4",
|
|
"tsconfig": "5.23.4"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0 <=22.x.x",
|
|
"npm": ">=6.0.0"
|
|
}
|
|
}
|