package.json 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. {
  2. "name": "@angular/platform-browser",
  3. "version": "16.2.9",
  4. "description": "Angular - library for using Angular in a web browser",
  5. "author": "angular",
  6. "license": "MIT",
  7. "engines": {
  8. "node": "^16.14.0 || >=18.10.0"
  9. },
  10. "dependencies": {
  11. "tslib": "^2.3.0"
  12. },
  13. "peerDependencies": {
  14. "@angular/animations": "16.2.9",
  15. "@angular/core": "16.2.9",
  16. "@angular/common": "16.2.9"
  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. "esm2022": "./esm2022/platform-browser.mjs",
  59. "esm": "./esm2022/platform-browser.mjs",
  60. "default": "./fesm2022/platform-browser.mjs"
  61. },
  62. "./animations": {
  63. "types": "./animations/index.d.ts",
  64. "esm2022": "./esm2022/animations/animations.mjs",
  65. "esm": "./esm2022/animations/animations.mjs",
  66. "default": "./fesm2022/animations.mjs"
  67. },
  68. "./testing": {
  69. "types": "./testing/index.d.ts",
  70. "esm2022": "./esm2022/testing/testing.mjs",
  71. "esm": "./esm2022/testing/testing.mjs",
  72. "default": "./fesm2022/testing.mjs"
  73. }
  74. }
  75. }