-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 945 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
35
36
37
38
39
40
41
42
{
"name": "next-s3",
"version": "0.0.17",
"description": "A CLI tool to deploy any next.js app on S3",
"main": "./dist/index.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/szalaybalazs/next-s3.git"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.165.0",
"ansi-colors": "^4.1.3",
"aws-sdk": "^2.1209.0",
"chalk": "^4.1.0",
"cli-progress": "^3.11.2",
"commander": "^9.4.0",
"dotenv": "^16.0.2",
"mime-types": "^2.1.35",
"p-limit": "^4.0.0",
"shelljs": "^0.8.5"
},
"author": "Balázs Szalay <balazs@szalay.me>",
"bin": {
"next-s3": "./dist/index.js"
},
"keywords": [
"next",
"aws",
"s3",
"deploy",
"cloudfront"
],
"devDependencies": {
"@types/cli-progress": "^3.11.0",
"@types/mime-types": "^2.1.1",
"@types/shelljs": "^0.8.11"
},
"scripts": {
"build": "ncc build src/index.ts -o dist/"
}
}