mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
fixes the timeout which we're facing in "CI / Test" in the past few days which gets stuck at "Install Playwright Browsers" https://github.com/transloadit/uppy/actions/runs/26646754991/job/78534314307?pr=6315 tested on my local fork
61 lines
1.4 KiB
JSON
61 lines
1.4 KiB
JSON
{
|
|
"name": "@uppy/xhr-upload",
|
|
"description": "Plain and simple classic HTML multipart form uploads with Uppy, as well as uploads using the HTTP PUT method.",
|
|
"version": "5.2.0",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"build": "tsc --build tsconfig.build.json",
|
|
"typecheck": "tsc --build",
|
|
"test": "vitest run --silent='passed-only'",
|
|
"test:e2e": "vitest run --project browser"
|
|
},
|
|
"keywords": [
|
|
"file uploader",
|
|
"xhr",
|
|
"xhr upload",
|
|
"XMLHttpRequest",
|
|
"ajax",
|
|
"fetch",
|
|
"uppy",
|
|
"uppy-plugin"
|
|
],
|
|
"homepage": "https://uppy.io",
|
|
"bugs": {
|
|
"url": "https://github.com/transloadit/uppy/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/transloadit/uppy.git"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"lib",
|
|
"dist",
|
|
"CHANGELOG.md"
|
|
],
|
|
"exports": {
|
|
".": "./lib/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"dependencies": {
|
|
"@uppy/companion-client": "workspace:^",
|
|
"@uppy/utils": "workspace:^"
|
|
},
|
|
"devDependencies": {
|
|
"@uppy/core": "workspace:^",
|
|
"@uppy/dashboard": "workspace:^",
|
|
"@vitest/browser": "^4.1.6",
|
|
"@vitest/browser-playwright": "^4.1.6",
|
|
"jsdom": "^26.1.0",
|
|
"msw": "^2.10.4",
|
|
"nock": "^13.1.0",
|
|
"playwright": "1.60.0",
|
|
"typescript": "^5.8.3",
|
|
"vitest": "^4.1.6"
|
|
},
|
|
"peerDependencies": {
|
|
"@uppy/core": "workspace:^"
|
|
}
|
|
}
|