-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.26 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
{
"name": "@paradisec-platform/fastify-tus-s3-plugin",
"version": "1.0.0",
"description": "A fastify plugin for a TUS endpoint that streams to S3",
"main": "index.js",
"type": "module",
"scripts": {
"build": "node_modules/.bin/unbuild",
"test": "echo \"Error: no test specified\" && exit 1"
},
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/ParadisecPlatform/fastify-tus-s3-platform.git"
},
"author": "Marco La Rosa",
"bugs": {
"url": "https://github.com/ParadisecPlatform/fastify-tus-s3-platform/issues"
},
"homepage": "https://github.com/ParadisecPlatform/fastify-tus-s3-platform#readme",
"dependencies": {
"@aws-sdk/client-s3": "^3.282.0",
"@aws-sdk/lib-storage": "^3.282.0",
"@aws-sdk/s3-request-presigner": "^3.282.0",
"date-fns": "^2.29.3",
"debug": "^4.3.4",
"fastify-plugin": "^4.5.0",
"file-system-cache": "^2.0.2",
"fs-extra": "^11.1.0"
},
"devDependencies": {
"unbuild": "^1.1.2"
}
}