-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 850 Bytes
/
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
{
"name": "s3b",
"version": "1.1.0",
"description": "A Self Hosted S3 Bucket",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"scripts": {
"build": "tsup",
"watch": "tsup src/index.ts --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingSamrat/s3b.git"
},
"keywords": [
"typescript",
"npm",
"package",
"s3b",
"s3bucket",
"storage"
],
"author": "Sam (Coding Samrat)",
"license": "MIT",
"bugs": {
"url": "https://github.com/CodingSamrat/s3b/issues"
},
"homepage": "https://github.com/CodingSamrat/s3b#readme",
"devDependencies": {
"@types/node": "^20.14.9",
"typescript": "^5.5.2"
},
"dependencies": {
"axios": "^1.7.3",
"form-data": "^4.0.0",
"tsup": "^8.1.0"
}
}