forked from transloadit/node-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.05 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.05 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "transloadit",
"version": "4.0.1",
"description": "Node.js SDK for Transloadit",
"type": "module",
"keywords": [
"transloadit",
"encoding",
"transcoding",
"video",
"audio",
"mp3"
],
"author": "Tim Koschuetzki <tim@transloadit.com>",
"packageManager": "yarn@4.9.4",
"engines": {
"node": ">= 20"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.891.0",
"@aws-sdk/s3-request-presigner": "^3.891.0",
"debug": "^4.4.3",
"form-data": "^4.0.4",
"got": "14.4.9",
"into-stream": "^9.0.0",
"is-stream": "^4.0.1",
"p-map": "^7.0.3",
"tus-js-client": "^4.3.1",
"type-fest": "^4.41.0",
"zod": "3.25.76"
},
"devDependencies": {
"@biomejs/biome": "^2.2.4",
"@types/debug": "^4.1.12",
"@types/temp": "^0.9.4",
"@vitest/coverage-v8": "^3.2.4",
"badge-maker": "^5.0.2",
"dotenv": "^17.2.2",
"execa": "9.6.0",
"nock": "^14.0.10",
"npm-run-all": "^4.1.5",
"p-retry": "^7.0.0",
"temp": "^0.9.4",
"tsx": "4.20.5",
"typescript": "5.9.2",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "git://github.com/transloadit/node-sdk.git"
},
"directories": {
"src": "./src"
},
"scripts": {
"check": "yarn lint:ts && yarn fix && yarn test:unit",
"fix:js": "biome check --write .",
"lint:ts": "tsc --build",
"fix:js:unsafe": "biome check --write . --unsafe",
"lint:js": "biome check .",
"lint": "npm-run-all --parallel 'lint:js'",
"fix": "npm-run-all --serial 'fix:js'",
"next:update": "next-update --keep true --tldr",
"prepack": "rm -f tsconfig.tsbuildinfo tsconfig.build.tsbuildinfo && tsc --build tsconfig.build.json",
"test:unit": "vitest run --coverage ./test/unit",
"test:integration": "vitest run ./test/integration",
"test:all": "vitest run --coverage",
"test": "yarn test:unit"
},
"license": "MIT",
"main": "./dist/Transloadit.js",
"exports": {
".": "./dist/Transloadit.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
]
}