mirror of
https://github.com/laosb/ghos3.git
synced 2025-04-30 15:41:08 +00:00
29 lines
1.1 KiB
JSON
29 lines
1.1 KiB
JSON
{
|
|
"name": "ghos3",
|
|
"version": "3.1.0",
|
|
"description": "S3 Storage adapter for Ghost.",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build:traditional": "esbuild ./src/index.js --bundle --outfile=index.js --platform=node --format=cjs --target=node16 --packages=external --footer:js='module.exports = module.exports.default;'",
|
|
"build:bundled": "esbuild ./src/index.js --bundle --minify --outfile=index.bundled.js --platform=node --format=cjs --target=node16 --packages=bundle --legal-comments=external --footer:js='module.exports = module.exports.default;'",
|
|
"build": "pnpm build:traditional && pnpm build:bundled",
|
|
"prepublishOnly": "pnpm 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"
|
|
}
|
|
}
|