-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
29 lines (29 loc) · 1.13 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"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 <[email protected]>",
"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"
}
}