astro-uploader/package.json

44 lines
1.0 KiB
JSON
Raw Permalink Normal View History

2024-06-28 03:00:39 +08:00
{
"name": "astro-uploader",
2024-07-08 22:52:45 +08:00
"version": "1.1.3",
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.0",
"rimraf": "^5.0.8"
},
"devDependencies": {
2024-07-08 20:48:41 +08:00
"@biomejs/biome": "^1.8.3",
"@types/node": "^20.14.10",
"astro": "^4.11.5",
"unbuild": "^2.0.0"
2024-06-28 03:00:39 +08:00
}
}