-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.25 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
{
"name": "@cellajs/imado",
"version": "0.1.6",
"repository": {
"type": "git",
"url": "git+https://github.com/cellajs/imado.git"
},
"description": "File handling with TUS for public and private files using AWS Lambda and S3.",
"author": "CellaJS <[email protected]>",
"homepage": "https://imado.eu",
"keywords": ["file handling", "tus", "aws", "s3", "lambda", "typescript"],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist", "src"],
"scripts": {
"build": "tsup src/index.ts",
"dev": "tsup --watch --onSuccess \"tsx dist/index.cjs\"",
"check": "npx @biomejs/biome check .",
"check:fix": "npx @biomejs/biome check --apply ."
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@evilmartians/lefthook": "^1.7.14",
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^22.5.0"
},
"license": "UNLICENSED",
"dependencies": {
"@aws-sdk/client-s3": "^3.637.0",
"@aws-sdk/cloudfront-signer": "^3.621.0",
"@tus/file-store": "^1.4.0",
"@tus/s3-store": "^1.5.0",
"@tus/server": "^1.9.0",
"jsonwebtoken": "^9.0.2",
"tsup": "^8.2.4",
"typescript": "^5.5.4"
},
"bugs": {
"url": "https://github.com/cellajs/imado/issues"
}
}