-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "react-s3-typescript",
"version": "2.4.1",
"description": "A npm package to upload your files into AWS S3 Bucket directly using react",
"homepage": "https://github.com/siamahnaf/react-s3-typescript",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs"
},
"author": {
"name": "Siam Ahnaf",
"email": "[email protected]",
"url": "https://www.siamahnaf.com"
},
"license": "MIT",
"keywords": [
"react",
"treact-component",
"aws",
"s3",
"upload",
"typescript",
"file-upload",
"file",
"react-aws-s3",
"react-s3-typescript"
],
"repository": {
"type": "git",
"directory": "https://github.com/siamahnaf/react-s3-typescript",
"url": "https://github.com/siamahnaf/react-s3-typescript"
},
"devDependencies": {
"@types/node": "^20.8.3",
"typescript": "^5.2.2"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.490.0",
"short-uuid": "^4.2.2",
"type-teller": "^1.0.8"
}
}