-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 992 Bytes
/
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
30
31
{
"name": "s3-ghost",
"version": "1.4.10",
"description": "Ghost AWS s3 storage adapter",
"main": "index.js",
"repository": "https://github.com/tranvansang/s3-ghost",
"author": "Sang Tran <[email protected]>",
"license": "MIT",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"build": "yarn tsc --target esnext --module commonjs --esModuleInterop true --forceConsistentCasingInFileNames true --skipLibcheck true --inlineSourceMap --declaration index.ts",
"clean": "rm -rf index.js index.d.ts",
"prepublishOnly": "yarn clean && yarn build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.48.0",
"core-js": "^3.20.3",
"ghost-storage-base": "^1.0.0",
"ms": "^2.1.3",
"s3-key": "^0.1.1"
},
"devDependencies": {
"@types/ghost-storage-base": "^0.0.1",
"@types/ms": "^0.7.31",
"@types/node": "^16.11.11",
"typescript": "^4.5.2"
}
}