@hdriel/aws-utils 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/dist/index.cjs +1648 -0
- package/dist/index.d.cts +320 -0
- package/dist/index.d.ts +320 -0
- package/dist/index.js +1631 -0
- package/package.json +76 -0
package/package.json
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
{
|
2
|
+
"name": "@hdriel/aws-utils",
|
3
|
+
"version": "1.0.0",
|
4
|
+
"description": "Simplified AWS SDK (v3) utilities for S3 (upload, download, streaming) with TypeScript support",
|
5
|
+
"author": "Hadriel Benjo (https://github.com/hdriel)",
|
6
|
+
"type": "module",
|
7
|
+
"types": "dist/index.d.ts",
|
8
|
+
"main": "./dist/index.js",
|
9
|
+
"license": "ISC",
|
10
|
+
"publishConfig": {
|
11
|
+
"access": "public"
|
12
|
+
},
|
13
|
+
"files": [
|
14
|
+
"dist"
|
15
|
+
],
|
16
|
+
"exports": {
|
17
|
+
".": {
|
18
|
+
"import": "./dist/index.js",
|
19
|
+
"require": "./dist/index.cjs"
|
20
|
+
}
|
21
|
+
},
|
22
|
+
"bugs": {
|
23
|
+
"url": "https://github.com/hdriel/stack-trace-logger/issues"
|
24
|
+
},
|
25
|
+
"repository": {
|
26
|
+
"type": "git",
|
27
|
+
"url": "git+https://github.com/hdriel/stack-trace-logger.git"
|
28
|
+
},
|
29
|
+
"scripts": {
|
30
|
+
"build": "tsup src/index.ts --format esm,cjs --dts --out-dir dist",
|
31
|
+
"build:watch": "tsc --watch",
|
32
|
+
"format": "prettier --write .",
|
33
|
+
"clean": "rimraf ./dist",
|
34
|
+
"yalc:publish": "pnpm run build && yalc publish --private --push && cd demo && npm run yalc:attach",
|
35
|
+
"docker:localstack:restart": "cross-env NODE_ENV=localhost && docker-compose -f docker-compose.localstack.yml --env-file .env.local up -d --build",
|
36
|
+
"docker:localstack:down": "docker-compose -f docker-compose.localstack.yml down"
|
37
|
+
},
|
38
|
+
"dependencies": {
|
39
|
+
"@aws-sdk/client-iam": "3.899.0",
|
40
|
+
"@aws-sdk/client-lambda": "3.899.0",
|
41
|
+
"@aws-sdk/client-s3": "3.899.0",
|
42
|
+
"@aws-sdk/client-ses": "3.899.0",
|
43
|
+
"@aws-sdk/client-sns": "3.899.0",
|
44
|
+
"@aws-sdk/lib-storage": "3.900.0",
|
45
|
+
"@aws-sdk/s3-request-presigner": "3.899.0",
|
46
|
+
"@smithy/node-http-handler": "^4.3.0",
|
47
|
+
"@smithy/types": "4.6.0",
|
48
|
+
"archiver": "7.0.1",
|
49
|
+
"aws-crt": "1.27.3",
|
50
|
+
"aws-lambda": "1.0.7",
|
51
|
+
"bytes": "3.1.2",
|
52
|
+
"express": "^5.1.0",
|
53
|
+
"ms": "2.1.3",
|
54
|
+
"multer": "2.0.2",
|
55
|
+
"multer-s3": "3.0.1",
|
56
|
+
"p-limit": "7.1.1",
|
57
|
+
"pathe": "2.0.3",
|
58
|
+
"s3-readstream": "2.0.1",
|
59
|
+
"stack-trace-logger": "^1.1.1",
|
60
|
+
"tslint": "^6.1.3",
|
61
|
+
"typescript": "^5.9.2"
|
62
|
+
},
|
63
|
+
"devDependencies": {
|
64
|
+
"@types/archiver": "6.0.3",
|
65
|
+
"@types/aws-lambda": "8.10.153",
|
66
|
+
"@types/bytes": "3.1.5",
|
67
|
+
"@types/express": "5.0.3",
|
68
|
+
"@types/ms": "2.1.0",
|
69
|
+
"@types/multer": "2.0.0",
|
70
|
+
"@types/multer-s3": "3.0.3",
|
71
|
+
"cross-env": "^10.1.0",
|
72
|
+
"prettier": "^3.6.2",
|
73
|
+
"ts-node": "^10.9.2",
|
74
|
+
"tsup": "^8.5.0"
|
75
|
+
}
|
76
|
+
}
|