-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.01 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.01 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@transloadit/node",
"version": "4.8.2",
"description": "Node.js SDK for Transloadit",
"homepage": "https://github.com/transloadit/node-sdk/tree/main/packages/node",
"bugs": {
"url": "https://github.com/transloadit/node-sdk/issues"
},
"type": "module",
"keywords": [
"transloadit",
"tus",
"resumable-upload",
"upload",
"file-processing",
"assembly",
"assemblies",
"template",
"templates",
"encoding",
"transcoding",
"video",
"image",
"audio",
"mp3",
"cli",
"typescript"
],
"author": "Tim Koschuetzki <tim@transloadit.com>",
"packageManager": "yarn@4.12.0",
"engines": {
"node": ">= 20"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.891.0",
"@aws-sdk/s3-request-presigner": "^3.891.0",
"@transloadit/sev-logger": "^0.1.9",
"@transloadit/utils": "^4.3.0",
"cacheable-lookup": "^7.0.0",
"clipanion": "^4.0.0-rc.4",
"debug": "^4.4.3",
"dotenv": "^17.2.3",
"form-data": "^4.0.4",
"got": "14.4.9",
"into-stream": "^9.0.0",
"is-stream": "^4.0.1",
"json-to-ast": "^2.1.0",
"lodash-es": "^4.17.21",
"node-watch": "^0.7.4",
"p-map": "^7.0.3",
"p-queue": "^9.0.1",
"recursive-readdir": "^2.2.3",
"tus-js-client": "^4.3.1",
"typanion": "^3.14.0",
"type-fest": "^4.41.0",
"zod": "3.25.76"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/lodash-es": "^4.17.12",
"@types/minimist": "^1.2.5",
"@types/node": "^24.10.3",
"@types/recursive-readdir": "^2.2.4",
"@types/temp": "^0.9.4",
"badge-maker": "^5.0.2",
"execa": "9.6.0",
"image-size": "^2.0.2",
"minimatch": "^10.1.1",
"nock": "^14.0.10",
"p-retry": "^7.0.0",
"rimraf": "^6.1.2",
"temp": "^0.9.4"
},
"repository": {
"type": "git",
"url": "https://github.com/transloadit/node-sdk",
"directory": "packages/node"
},
"directories": {
"src": "./src"
},
"scripts": {
"check": "yarn sync:intent-docs && yarn lint:ts && yarn fix && yarn test:unit",
"sync:intent-docs": "node src/cli/generateIntentDocs.ts",
"fix:js": "biome check --write .",
"lint:ts": "yarn --cwd ../.. tsc:node",
"fix:js:unsafe": "biome check --write . --unsafe",
"lint:js": "biome check .",
"lint": "yarn lint:js",
"fix": "yarn fix:js",
"lint:deps": "knip --dependencies --no-progress",
"fix:deps": "knip --dependencies --no-progress --fix",
"prepack": "node ../../scripts/prepare-node-package.ts",
"test:unit": "yarn --cwd ../.. tsc:utils && ../../node_modules/.bin/vitest run --coverage ./test/unit",
"test:e2e": "yarn --cwd ../.. tsc:utils && ../../node_modules/.bin/vitest run ./test/e2e",
"test": "yarn --cwd ../.. tsc:utils && ../../node_modules/.bin/vitest run --coverage"
},
"license": "MIT",
"main": "./dist/Transloadit.js",
"exports": {
".": "./dist/Transloadit.js",
"./package.json": "./package.json"
},
"files": [
"dist",
"src"
],
"bin": {
"transloadit": "./dist/cli.js"
}
}