astro-uploader/package.json

56 lines
1.1 KiB
JSON
Raw Normal View History

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