-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 851 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
{
"name": "ros-rsync-to-s3",
"type": "module",
"version": "0.0.1-alpha",
"packageManager": "[email protected]",
"devDependencies": {
"@types/ms": "0.7.34",
"@types/node": "20.11.28",
"@types/validator": "13.12.0",
"@vercel/ncc": "0.38.1",
"gts": "5.2.0",
"ts-node": "10.9.2",
"typescript": "5.4.2"
},
"scripts": {
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint",
"bundle": "ncc build src/index.ts -o build -m"
},
"dependencies": {
"@aws-sdk/client-s3": "3.535.0",
"chalk": "5.3.0",
"chokidar": "3.6.0",
"ms": "2.1.3",
"rsyncwrapper": "3.0.1",
"validator": "13.12.0",
"yaml": "2.4.1"
},
"engines": {
"node": ">=16.0.0"
}
}