package.json 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {
  2. "name": "@angular/animations",
  3. "version": "19.2.13",
  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.13",
  15. "@angular/common": "19.2.13"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "https://github.com/angular/angular.git",
  20. "directory": "packages/animations"
  21. },
  22. "ng-update": {
  23. "packageGroup": [
  24. "@angular/core",
  25. "@angular/bazel",
  26. "@angular/common",
  27. "@angular/compiler",
  28. "@angular/compiler-cli",
  29. "@angular/animations",
  30. "@angular/elements",
  31. "@angular/platform-browser",
  32. "@angular/platform-browser-dynamic",
  33. "@angular/forms",
  34. "@angular/platform-server",
  35. "@angular/upgrade",
  36. "@angular/router",
  37. "@angular/language-service",
  38. "@angular/localize",
  39. "@angular/service-worker"
  40. ]
  41. },
  42. "sideEffects": false,
  43. "module": "./fesm2022/animations.mjs",
  44. "typings": "./index.d.ts",
  45. "type": "module",
  46. "exports": {
  47. "./package.json": {
  48. "default": "./package.json"
  49. },
  50. ".": {
  51. "types": "./index.d.ts",
  52. "default": "./fesm2022/animations.mjs"
  53. },
  54. "./browser": {
  55. "types": "./browser/index.d.ts",
  56. "default": "./fesm2022/browser.mjs"
  57. },
  58. "./browser/testing": {
  59. "types": "./browser/testing/index.d.ts",
  60. "default": "./fesm2022/browser/testing.mjs"
  61. }
  62. }
  63. }