package.json 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. {
  2. "name": "@angular/animations",
  3. "version": "19.2.4",
  4. "description": "Angular - animations integration with web-animations",
  5. "author": "angular",
  6. "license": "MIT",
  7. "engines": {
  8. "node": "^18.19.1 || ^20.11.1 || >=22.0.0"
  9. },
  10. "dependencies": {
  11. "tslib": "^2.3.0"
  12. },
  13. "peerDependencies": {
  14. "@angular/core": "19.2.4"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "https://github.com/angular/angular.git",
  19. "directory": "packages/animations"
  20. },
  21. "ng-update": {
  22. "packageGroup": [
  23. "@angular/core",
  24. "@angular/bazel",
  25. "@angular/common",
  26. "@angular/compiler",
  27. "@angular/compiler-cli",
  28. "@angular/animations",
  29. "@angular/elements",
  30. "@angular/platform-browser",
  31. "@angular/platform-browser-dynamic",
  32. "@angular/forms",
  33. "@angular/platform-server",
  34. "@angular/upgrade",
  35. "@angular/router",
  36. "@angular/language-service",
  37. "@angular/localize",
  38. "@angular/service-worker"
  39. ]
  40. },
  41. "sideEffects": false,
  42. "module": "./fesm2022/animations.mjs",
  43. "typings": "./index.d.ts",
  44. "type": "module",
  45. "exports": {
  46. "./package.json": {
  47. "default": "./package.json"
  48. },
  49. ".": {
  50. "types": "./index.d.ts",
  51. "default": "./fesm2022/animations.mjs"
  52. },
  53. "./browser": {
  54. "types": "./browser/index.d.ts",
  55. "default": "./fesm2022/browser.mjs"
  56. },
  57. "./browser/testing": {
  58. "types": "./browser/testing/index.d.ts",
  59. "default": "./fesm2022/browser/testing.mjs"
  60. }
  61. }
  62. }