@froxz/vite-plugin-s3
Version:
Allows you to upload files to AWS S3 or any other S3 compatible provider
73 lines (72 loc) • 1.68 kB
JSON
{
"name": "@froxz/vite-plugin-s3",
"version": "1.7.1",
"description": "Allows you to upload files to AWS S3 or any other S3 compatible provider",
"author": {
"name": "Sergkei Melingk",
"email": "sergio11of@gmail.com",
"url": "https://github.com/SergkeiM"
},
"license": "MIT",
"homepage": "https://github.com/SergkeiM/vite-plugin-s3",
"repository": "https://github.com/SergkeiM/vite-plugin-s3",
"bugs": {
"url": "https://github.com/SergkeiM/vite-plugin-s3/issues"
},
"keywords": [
"vite",
"s3",
"vite-plugin",
"do-spaces"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./*": "./*"
},
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "index.d.ts",
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./*"
]
}
},
"files": [
"*.d.ts",
"dist"
],
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"dev": "esno scripts/dev.ts",
"build": "esno scripts/build.ts"
},
"peerDependencies": {
"vite": "^3.1.0 || ^4.0.0 || ^5.0.0 || ^6.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.0.0",
"mime-types": "^2.1.35",
"recursive-readdir": "^2.2.3"
},
"devDependencies": {
"@antfu/eslint-config": "^2.11.0",
"@types/lodash": "^4.14.191",
"@types/mime-types": "^2.1.1",
"@types/node": "^22.5.4",
"@types/recursive-readdir": "^2.2.1",
"eslint": "^8.57.0",
"esno": "^4.0.0",
"kolorist": "^1.7.0",
"lodash": "^4.17.21",
"tsup": "^8.0.1",
"typescript": "^5.3.2"
}
}