package.json 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. {
  2. "name": "@angular/core",
  3. "version": "16.2.9",
  4. "description": "Angular - the core framework",
  5. "author": "angular",
  6. "license": "MIT",
  7. "engines": {
  8. "node": "^16.14.0 || >=18.10.0"
  9. },
  10. "exports": {
  11. "./schematics/*": {
  12. "default": "./schematics/*.js"
  13. },
  14. "./package.json": {
  15. "default": "./package.json"
  16. },
  17. ".": {
  18. "types": "./index.d.ts",
  19. "esm2022": "./esm2022/core.mjs",
  20. "esm": "./esm2022/core.mjs",
  21. "default": "./fesm2022/core.mjs"
  22. },
  23. "./rxjs-interop": {
  24. "types": "./rxjs-interop/index.d.ts",
  25. "esm2022": "./esm2022/rxjs-interop/rxjs-interop.mjs",
  26. "esm": "./esm2022/rxjs-interop/rxjs-interop.mjs",
  27. "default": "./fesm2022/rxjs-interop.mjs"
  28. },
  29. "./testing": {
  30. "types": "./testing/index.d.ts",
  31. "esm2022": "./esm2022/testing/testing.mjs",
  32. "esm": "./esm2022/testing/testing.mjs",
  33. "default": "./fesm2022/testing.mjs"
  34. }
  35. },
  36. "dependencies": {
  37. "tslib": "^2.3.0"
  38. },
  39. "peerDependencies": {
  40. "rxjs": "^6.5.3 || ^7.4.0",
  41. "zone.js": "~0.13.0"
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "https://github.com/angular/angular.git",
  46. "directory": "packages/core"
  47. },
  48. "ng-update": {
  49. "migrations": "./schematics/migrations.json",
  50. "packageGroup": [
  51. "@angular/core",
  52. "@angular/bazel",
  53. "@angular/common",
  54. "@angular/compiler",
  55. "@angular/compiler-cli",
  56. "@angular/animations",
  57. "@angular/elements",
  58. "@angular/platform-browser",
  59. "@angular/platform-browser-dynamic",
  60. "@angular/forms",
  61. "@angular/platform-server",
  62. "@angular/upgrade",
  63. "@angular/router",
  64. "@angular/language-service",
  65. "@angular/localize",
  66. "@angular/service-worker"
  67. ]
  68. },
  69. "schematics": "./schematics/collection.json",
  70. "sideEffects": false,
  71. "module": "./fesm2022/core.mjs",
  72. "typings": "./index.d.ts",
  73. "type": "module"
  74. }