-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"name": "@devcodes-sdk/server-upload",
"version": "0.0.1",
"description": "The `@devcodes-sdk/server-upload` provides functionality for handling file uploads, interacting with Amazon S3, and optimizing image files. This document explains how to install and use the provided functions.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"@aws-sdk/client-s3": "^3.741.0",
"@aws-sdk/lib-storage": "^3.741.0",
"@aws-sdk/s3-request-presigner": "^3.741.0",
"@devcodes-sdk/server-upload": "^1.1.3",
"chalk": "^5.4.1",
"express": "^4.21.2",
"file-type": "19.3.0",
"multer": "^1.4.5-lts.1",
"sharp": "^0.33.5",
"uuid": "^11.0.5"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.15",
"@types/morgan": "^1.9.9",
"@types/multer": "^1.4.12",
"@types/uuid": "^10.0.0",
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"files": [
"dist",
"README.md"
],
"scripts": {
"build:link": "tsup && npm link",
"build": "tsup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DevCodes-SRL/server-upload.git"
},
"keywords": [
"devcodes",
"server",
"s3"
],
"author": "DevCodes",
"license": "MIT",
"bugs": {
"url": "https://github.com/DevCodes-SRL/server-upload/issues"
},
"homepage": "https://github.com/DevCodes-SRL/server-upload/README.MD"
}