uppy/packages/@uppy/companion/package.json
dependabot[bot] dda04ffaaf
build(deps): bump ws from 8.20.1 to 8.21.0
Bumps [ws](https://github.com/websockets/ws) from 8.20.1 to 8.21.0.
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](https://github.com/websockets/ws/compare/8.20.1...8.21.0)

---
updated-dependencies:
- dependency-name: ws
  dependency-version: 8.21.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-21 13:13:35 +00:00

129 lines
3.6 KiB
JSON

{
"name": "@uppy/companion",
"version": "6.2.2",
"description": "OAuth helper and remote fetcher for Uppy's (https://uppy.io) extensible file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Dropbox and Google Drive, S3 and more :dog:",
"types": "dist/companion.d.ts",
"author": "Transloadit.com",
"license": "MIT",
"sideEffects": false,
"homepage": "https://github.com/transloadit/uppy#readme",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/transloadit/uppy.git"
},
"exports": {
".": "./dist/companion.js",
"./standalone": "./dist/standalone/index.js",
"./package.json": "./package.json"
},
"keywords": [
"file uploader",
"progress",
"preview",
"resumable uploads",
"tus",
"s3",
"google drive",
"dropbox",
"box",
"backend",
"websocket",
"express",
"realtime"
],
"bin": "./dist/bin/companion.js",
"dependencies": {
"@aws-sdk/client-s3": "3.1047.0",
"@aws-sdk/client-sts": "3.1047.0",
"@aws-sdk/lib-storage": "3.1047.0",
"@aws-sdk/s3-presigned-post": "3.1047.0",
"@aws-sdk/s3-request-presigner": "3.1047.0",
"body-parser": "2.2.2",
"common-tags": "1.8.2",
"connect-redis": "7.1.1",
"content-disposition": "2.0.0",
"cookie-parser": "1.4.7",
"cors": "2.8.6",
"escape-goat": "4.0.0",
"escape-string-regexp": "5.0.0",
"express": "^5.2.1",
"express-interceptor": "1.2.0",
"express-prom-bundle": "^8.0.0",
"express-session": "1.19.0",
"fast-safe-stringify": "^2.1.1",
"formdata-node": "^6.0.3",
"got": "^13.0.0",
"grant": "^5.4.24",
"helmet": "8.1.0",
"ioredis": "5.10.1",
"ipaddr.js": "2.4.0",
"jsonwebtoken": "9.0.3",
"lodash": "4.18.1",
"mime-types": "3.0.2",
"moment": "2.30.1",
"moment-timezone": "0.6.2",
"morgan": "1.10.1",
"ms": "2.1.3",
"node-schedule": "2.1.1",
"p-map": "7.0.4",
"prom-client": "15.1.3",
"serialize-error": "13.0.1",
"serialize-javascript": "7.0.5",
"supports-color": "10.2.2",
"tus-js-client": "4.3.1",
"validator": "13.15.35",
"webdav": "5.10.0",
"ws": "8.21.0",
"zod": "4.4.3"
},
"devDependencies": {
"@types/common-tags": "1.8.4",
"@types/compression": "1.8.1",
"@types/content-disposition": "0.5.9",
"@types/cookie-parser": "1.4.10",
"@types/cors": "2.8.6",
"@types/eslint": "9.6.1",
"@types/express-session": "1.19.0",
"@types/http-proxy": "1.17.17",
"@types/jsonwebtoken": "9.0.10",
"@types/lodash": "4.17.24",
"@types/mime-types": "3.0.1",
"@types/morgan": "1.7.37",
"@types/ms": "2.1.0",
"@types/node": "20.19.41",
"@types/node-schedule": "2.1.8",
"@types/request": "2.48.13",
"@types/serialize-javascript": "5.0.4",
"@types/supertest": "7.2.0",
"@types/validator": "13.15.10",
"@types/webpack": "5.28.5",
"@types/ws": "8.18.1",
"execa": "9.6.1",
"http-proxy": "1.18.1",
"nock": "^14.0.15",
"supertest": "7.2.2",
"typescript": "6.0.3",
"vitest": "4.1.6"
},
"files": [
"dist/",
"src/",
"CHANGELOG.md"
],
"scripts": {
"build": "tsc --build tsconfig.build.json",
"deploy": "kubectl apply -f infra/kube/companion-kube.yml",
"start": "node ./dist/standalone/start-server.js",
"start:dev": "bash start-dev",
"typecheck": "tsc",
"check": "yarn typecheck && yarn test",
"test": "vitest run --silent='passed-only'"
},
"engines": {
"node": "^20.19.3 || >=22.0.0"
},
"installConfig": {
"hoistingLimits": "workspaces"
}
}