package.json 1.6 KB

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