-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 952 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
32
33
34
{
"name": "s3-explorer-static-generator",
"version": "2.3.3",
"description": "A command line tool to generate static html files for a S3 bucket explorer.",
"repository": {
"type": "git",
"url": "git+https://github.com/rrainn/s3-explorer-static-generator.git"
},
"homepage": "https://github.com/rrainn/s3-explorer-static-generator",
"main": "dist/index.js",
"bin": {
"s3-explorer-static-generator": "dist/index.js"
},
"scripts": {
"prepare": "npm run build:clean && npm run build",
"build": "tsc",
"build:watch": "npm run build -- --watch",
"build:clean": "rimraf dist"
},
"author": "rrainn, Inc.",
"license": "MIT",
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^20.9.1",
"rimraf": "^5.0.5",
"typescript": "^5.2.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.633.0",
"commander": "^11.1.0",
"ejs": "^3.1.9",
"fast-xml-parser": "^4.3.2"
}
}