mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
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
26 lines
629 B
JSON
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
|
|
}
|