-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 2.75 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 2.75 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
{
"name": "transloadit-node-sdk",
"private": true,
"type": "module",
"packageManager": "yarn@4.12.0",
"workspaces": [
"packages/*"
],
"scripts": {
"check": "yarn lint:changesets && yarn fix:deps && yarn fix:js && yarn lint:ts && yarn test:unit",
"verify": "yarn lint:changesets && yarn lint:publish && yarn lint:deps && yarn lint:js && yarn lint:ts && yarn test:unit",
"verify:full": "yarn verify && yarn knip && yarn parity:transloadit && yarn test:types",
"lint:js": "biome check .",
"lint:ts": "yarn tsc:types && yarn tsc:node && yarn tsc:zod && yarn workspace @transloadit/notify-url-relay lint:ts",
"lint:changesets": "node scripts/guard-changesets.ts",
"lint": "yarn lint:js",
"fix": "yarn fix:js",
"fix:js": "biome check --write .",
"fix:js:unsafe": "biome check --write . --unsafe",
"lint:deps": "yarn run --binaries-only knip --include dependencies,unlisted,unresolved,catalog --no-progress --no-config-hints",
"lint:publish": "node scripts/check-workspace-protocol.ts",
"fix:deps": "yarn run --binaries-only knip --include dependencies,unlisted,unresolved,catalog --no-progress --fix --no-config-hints",
"knip": "yarn run --binaries-only knip --exclude binaries --no-config-hints --no-progress",
"pack": "node scripts/pack-transloadit.ts",
"parity:transloadit": "node scripts/prepare-transloadit.ts && node scripts/fingerprint-pack.ts packages/transloadit --ignore-scripts --quiet --out /tmp/transloadit-after.json && node scripts/verify-fingerprint.ts --current /tmp/transloadit-after.json --diff",
"test:unit": "yarn workspace @transloadit/node test:unit && yarn workspace @transloadit/mcp-server test:unit && yarn workspace @transloadit/types test:unit && yarn workspace @transloadit/zod test:unit && yarn workspace @transloadit/notify-url-relay test:unit",
"test:types": "yarn workspace @transloadit/zod test:types",
"test:e2e": "yarn workspace @transloadit/node test:e2e",
"test": "yarn workspace @transloadit/node test",
"tsc:node": "yarn tsc:utils && node ./node_modules/typescript/bin/tsc -b packages/node/tsconfig.build.json",
"tsc:types": "yarn workspace @transloadit/types generate && node ./node_modules/typescript/bin/tsc -b packages/types/tsconfig.build.json",
"tsc:utils": "node ./node_modules/typescript/bin/tsc -b packages/utils/tsconfig.build.json",
"tsc:zod": "yarn workspace @transloadit/zod sync && node ./node_modules/typescript/bin/tsc -b packages/zod/tsconfig.build.json"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@changesets/cli": "^2.29.7",
"@types/node": "^24.10.3",
"@vitest/coverage-v8": "^3.2.4",
"jest-diff": "^30.2.0",
"knip": "^5.73.3",
"npm-run-all": "^4.1.5",
"typescript": "5.9.3",
"vitest": "^3.2.4"
}
}