forked from anacronw/multer-s3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.31 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
46
47
48
49
50
51
52
53
54
55
{
"author": "Striar Yunis",
"bugs": {
"url": "https://github.com/Striar-Yunis/multer-s3/issues"
},
"dependencies": {
"@aws-sdk/lib-storage": "^3.667.0",
"file-type": "^19.5.0",
"html-comment-regex": "^1.1.2"
},
"description": "Streaming multer storage engine for AWS S3",
"devDependencies": {
"@babel/cli": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@types/express": "^5.0.0",
"@types/multer": "^1.4.12",
"@types/node": "^22.7.5",
"express": "^4.21.1",
"multer": "^1.4.5-lts.1",
"typescript": "^5.6.3"
},
"engines": {
"node": ">= 12.0.0"
},
"exports": {
"require": "./dist/index.cjs",
"import": "./dist/index.js"
},
"files": [
"dist/**/*"
],
"homepage": "https://github.com/Striar-Yunis/multer-s3/multer-s3#readme",
"keywords": [
"multer",
"s3"
],
"license": "MIT",
"main": "dist/index.cjs",
"module": "dist/index.js",
"name": "multer-s3-extended",
"peerDependencies": {
"@aws-sdk/client-s3": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Striar-Yunis/multer-s3.git"
},
"scripts": {
"build": "tsc && npx babel dist/index.js --out-file dist/index.cjs",
"publish": "npm run build && npm publish"
},
"type": "module",
"types": "dist/index.d.ts",
"version": "1.0.5"
}