ghos3/package.json
2025-01-04 01:53:33 +08:00

27 lines
851 B
JSON

{
"name": "ghos3",
"version": "3.0.1",
"description": "S3 Storage adapter for Ghost.",
"main": "index.js",
"scripts": {
"build": "esbuild ./src/index.js --bundle --outfile=index.js --platform=node --format=cjs --target=node16 --packages=external --footer:js='module.exports = module.exports.default;'",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Shibo Lyu <github@of.sb>",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.721.0",
"@tryghost/errors": "^1.3.6",
"@tryghost/tpl": "^0.1.33",
"ghost-storage-base": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/ghost-storage-base": "^0.0.4",
"esbuild": "^0.24.2",
"prettier": "^3.4.2",
"tslib": "^2.8.1",
"typescript": "^5.7.2"
}
}