-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
45 lines (45 loc) · 1.49 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
43
44
45
{
"name": "@noelware/s3-action",
"description": "☕ Simple and fast GitHub Action to upload objects to Amazon S3 easily",
"version": "2.2.7",
"type": "module",
"author": "Noel Towa <[email protected]>",
"private": true,
"repository": "https://github.com/Noelware/s3-action",
"bugs": "https://github.com/Noelware/s3-action/issues/new",
"main": "./build/action.js",
"types": "index.d.ts",
"scripts": {
"build": "bun run scripts/build.ts",
"lint": "bun run scripts/eslint.ts",
"test": "bun test",
"fmt": "bun run scripts/prettier.ts"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/glob": "0.5.0",
"@aws-sdk/client-s3": "3.744.0",
"@aws-sdk/lib-storage": "3.744.0",
"@noelware/utils": "2.5.1",
"mime-types": "2.1.35",
"zod": "3.24.1"
},
"devDependencies": {
"@augu/eslint-config": "5.2.4",
"@augu/tsconfig": "1.2.0",
"@types/bun": "1.2.2",
"@types/eslint": "9.6.1",
"@types/mime-types": "2.1.4",
"@types/node": "22.13.1",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vercel/ncc": "0.38.3",
"colorette": "2.0.20",
"eslint": "9.14.0",
"eslint-config-prettier": "10.0.1",
"eslint-formatter-codeframe": "7.32.1",
"eslint-plugin-perfectionist": "4.8.0",
"prettier": "3.3.3",
"typescript": "5.7.3"
}
}