package.json 1.8 KB

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