mirror of
https://github.com/transloadit/uppy.git
synced 2026-01-23 10:25:33 +00:00
It kept mysteriously deleting
`packages/@uppy/companion/node_modules/webdav/dist/node/compat/env.js`
turns out it was because of the line `env.*` in
`packages/@uppy/companion/.gitignore`
chery picked from 2508068551
closes #5893
42 lines
2 KiB
JSON
42 lines
2 KiB
JSON
{
|
|
"name": "@uppy-dev/build",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"description": "Extensible JavaScript file upload widget with support for drag&drop, resumable uploads, previews, restrictions, file processing/encoding, remote providers like Instagram, Dropbox, Google Drive, S3 and more :dog:",
|
|
"license": "MIT",
|
|
"workspaces": [
|
|
"examples/*",
|
|
"packages/@uppy/*",
|
|
"packages/@uppy/angular/projects/uppy/*",
|
|
"packages/uppy",
|
|
"private/*"
|
|
],
|
|
"scripts": {
|
|
"build": "turbo run --no-daemon build build:css --filter='./packages/@uppy/*' --filter='./packages/uppy'",
|
|
"build:clean": "git clean -Xfd packages e2e .parcel-cache coverage .turbo -e '!node_modules' -e '!**/node_modules/**/*'",
|
|
"build:watch": "turbo watch build build:css --filter='./packages/@uppy/*'",
|
|
"migrate:components": "yarn workspace @uppy/components migrate",
|
|
"check": "yarn exec biome check --write",
|
|
"check:ci": "yarn exec biome ci",
|
|
"dev": "yarn workspace @uppy-dev/dev dev",
|
|
"dev:with-companion": "npm-run-all --parallel start:companion dev",
|
|
"start:companion": "yarn workspace @uppy/companion start:dev",
|
|
"test": "turbo run test --filter='./packages/@uppy/*' --filter='./packages/uppy' --filter='./examples/{react,vue,sveltekit}'",
|
|
"test:watch": "turbo watch test --filter='./packages/@uppy/*' --filter='./packages/uppy'",
|
|
"typecheck": "turbo run typecheck --filter='./packages/@uppy/*' --filter='./packages/uppy'",
|
|
"version": "changeset version && corepack yarn install --mode=update-lockfile && node scripts/update-readme-versions.mjs",
|
|
"release": "changeset publish"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "2.0.5",
|
|
"@changesets/changelog-github": "^0.5.1",
|
|
"@changesets/cli": "patch:@changesets/cli@npm%3A2.29.5#~/.yarn/patches/@changesets-cli-npm-2.29.5-68d8030bf3.patch",
|
|
"npm-run-all": "^4.1.5",
|
|
"turbo": "^2.5.4",
|
|
"typescript": "^5.8.3"
|
|
},
|
|
"packageManager": "yarn@4.4.1+sha224.fd21d9eb5fba020083811af1d4953acc21eeb9f6ff97efd1b3f9d4de",
|
|
"engines": {
|
|
"node": ">=20.19.0"
|
|
}
|
|
}
|