-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 KB
/
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": "r2-upload-action",
"version": "1.4",
"description": "GitHub Action to upload files to a Cloudflare R2 bucket",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "ncc build src/index.ts -s -o dist",
"test": "jest",
"action": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryand56/r2-upload-action.git"
},
"author": "ryand56",
"license": "(MIT or 0BSD)",
"bugs": {
"url": "https://github.com/ryand56/r2-upload-action/issues"
},
"homepage": "https://github.com/ryand56/r2-upload-action#readme",
"devDependencies": {
"@types/dedent": "^0.7.0",
"@types/jest": "^29.5.3",
"@types/md5": "^2.3.2",
"@types/node": "^22.0.0",
"@vercel/ncc": "^0.38.1",
"dotenv": "^16.3.1",
"github-action-ts-run-api": "^3.0.4",
"jest": "^29.6.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-s3": "^3.395.0",
"@aws-sdk/s3-request-presigner": "^3.395.0",
"md5": "^2.3.0",
"mime": "^4.0.0"
}
}