astro-uploader/package.json

44 lines
1.0 KiB
JSON
Raw Normal View History

2024-06-28 03:00:39 +08:00
{
"name": "astro-uploader",
2024-11-29 15:52:17 +08:00
"version": "1.2.1",
2024-06-28 03:00:39 +08:00
"description": "A uploader for uploading the Astro generated files through the S3 API.",
2024-07-08 20:57:40 +08:00
"keywords": ["Astro", "S3", "withastro", "opendal"],
"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",
2024-07-08 20:56:00 +08:00
"files": ["dist"],
2024-06-28 03:00:39 +08:00
"scripts": {
"build": "unbuild",
2024-07-08 20:56:00 +08:00
"format": "biome format . --write",
2024-06-28 03:00:39 +08:00
"stub": "unbuild --stub"
},
"dependencies": {
2024-07-08 20:48:41 +08:00
"mime": "^4.0.4",
"opendal": "^0.47.7",
2024-08-05 20:00:40 +08:00
"rimraf": "^6.0.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.10.1",
"astro": "^4.16.16",
"unbuild": "^2.0.0"
2024-06-28 03:00:39 +08:00
}
}