angular/packages/animations/package.json
Paul Gschwendtner 5eccf3a5e5 fix(animations): add missing peer dependency on @angular/common (#60660)
As of
1c4a3677eb (diff-64131f78c9ae21421dc277debf9c8a16705a90fa649ddf580da3db434c295b11R7-R8),
the animations package has a dependency on `@angular/common`. This
commit adds this dependency to the `package.json`— as otherwise pnpm
strict builds will fail.

PR Close #60660
2025-04-01 11:59:49 +00:00

26 lines
629 B
JSON

{
"name": "@angular/animations",
"version": "0.0.0-PLACEHOLDER",
"description": "Angular - animations integration with web-animations",
"author": "angular",
"license": "MIT",
"engines": {
"node": "^20.11.1 || >=22.11.0"
},
"dependencies": {
"tslib": "^2.3.0"
},
"peerDependencies": {
"@angular/core": "0.0.0-PLACEHOLDER",
"@angular/common": "0.0.0-PLACEHOLDER"
},
"repository": {
"type": "git",
"url": "https://github.com/angular/angular.git",
"directory": "packages/animations"
},
"ng-update": {
"packageGroup": "NG_UPDATE_PACKAGE_GROUP"
},
"sideEffects": false
}