ghos3/package.json
2023-10-28 02:56:22 +08:00

25 lines
785 B
JSON

{
"name": "ghos3",
"version": "2.0.0",
"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.437.0",
"ghost-storage-base": "^1.0.0"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/ghost-storage-base": "^0.0.1",
"esbuild": "^0.19.5",
"prettier": "^2.8.4",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
}
}