uppy/packages/@uppy/tus/package.json
Merlijn Vos 1b1a9e3591
Add "files" to all package.json's (#5852)
Closes #5865

I noticed we are publishing all files, we should filter them. npm
automatically adds package.json, license, and readme so you can leave
them out of the files array.
2025-08-01 17:20:42 +02:00

49 lines
1 KiB
JSON

{
"name": "@uppy/tus",
"description": "Resumable uploads for Uppy using Tus.io",
"version": "4.3.1",
"license": "MIT",
"main": "lib/index.js",
"type": "module",
"scripts": {
"build": "tsc --build tsconfig.build.json",
"typecheck": "tsc --build",
"test": "vitest run --environment=jsdom --silent='passed-only'"
},
"keywords": [
"file uploader",
"uppy",
"uppy-plugin",
"upload",
"resumable",
"tus"
],
"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"
],
"dependencies": {
"@uppy/companion-client": "workspace:^",
"@uppy/utils": "workspace:^",
"tus-js-client": "^4.2.3"
},
"devDependencies": {
"@uppy/core": "workspace:^",
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"vitest": "^3.2.4"
},
"peerDependencies": {
"@uppy/core": "workspace:^"
}
}