-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.02 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.02 KB
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
43
44
{
"name": "@zeitgg/r2d2",
"version": "1.3.10",
"main": "dist/index.js",
"bin": {
"r2d2": "dist/index.js"
},
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@types/mime-types": "^2.1.4",
"@types/node": "^22.13.14",
"@types/prompts": "^2.4.9",
"eslint": "^8.57.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.775.0",
"@aws-sdk/lib-storage": "^3.775.0",
"@types/shell-quote": "^1.7.5",
"commander": "^13.1.0",
"dotenv": "^16.4.7",
"kleur": "^4.1.5",
"mime-types": "^3.0.1",
"ora": "^8.2.0",
"prompts": "^2.4.2",
"shell-quote": "^1.8.2"
},
"engines": {
"node": ">=16.0.0"
}
}