uppy/examples/angular/package.json
prakash 8c5814b3c1
fix: keep the Angular 19 example on zone.js 0.15 and add a changeset
examples/angular still depends on @angular/core ^19.2.18, which declares a
peer on zone.js ~0.15.0, so the 0.16 bump left it running against an
unsupported peer. packages/@uppy/angular is on Angular 21 and keeps ~0.16.2.

Adds the missing changeset: @uppy/companion and @uppy/angular both take
runtime dependency bumps in this PR and would otherwise never be released.
2026-07-25 03:14:38 +05:30

35 lines
958 B
JSON

{
"name": "example-angular",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test"
},
"private": true,
"dependencies": {
"@angular/common": "^19.2.17",
"@angular/compiler": "^19.2.18",
"@angular/core": "^19.2.18",
"@angular/forms": "^19.2.17",
"@angular/platform-browser": "^19.2.17",
"@angular/platform-browser-dynamic": "^19.2.17",
"@angular/router": "^19.2.17",
"@uppy/angular": "workspace:*",
"@uppy/core": "workspace:*",
"@uppy/dashboard": "workspace:*",
"@uppy/tus": "workspace:*",
"@uppy/webcam": "workspace:*",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^19.2.6",
"@angular/cli": "^19.2.6",
"@angular/compiler-cli": "^19.2.17",
"typescript": "~5.7.2"
}
}