astro-uploader/package.json

55 lines
1.1 KiB
JSON

{
"name": "astro-uploader",
"version": "1.0.0",
"description": "A uploader for uploading the Astro generated files through the S3 API.",
"author": "Yufan Sheng <syhily@gmail.com>",
"license": "MIT",
"main": "./dist/index.mjs",
"repository": {
"type": "git",
"url": "https://github.com/syhily/astro-uploader"
},
"bugs": {
"url": "https://github.com/syhily/astro-uploader/issues"
},
"keywords": [
"Astro",
"S3"
],
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"stub": "unbuild --stub"
},
"peerDependencies": {
"vite": "^2.9.0 || ^3.0.0-0 || ^4.0.0 || ^5.0.0-0"
},
"peerDependenciesMeta": {
"vite": {
"optional": true
}
},
"devDependencies": {
"@types/node": "^20.14.9",
"astro": "^4.11.3",
"unbuild": "^2.0.0"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.600.0",
"mime": "^4.0.3",
"rimraf": "^5.0.7"
}
}