package.json 1.2 KB

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