package.json 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. {
  2. "name": "@angular/compiler-cli",
  3. "version": "19.2.4",
  4. "description": "Angular - the compiler CLI for Node.js",
  5. "typings": "index.d.ts",
  6. "bin": {
  7. "ngcc": "./bundles/ngcc/index.js",
  8. "ngc": "./bundles/src/bin/ngc.js",
  9. "ng-xi18n": "./bundles/src/bin/ng_xi18n.js"
  10. },
  11. "type": "module",
  12. "exports": {
  13. ".": {
  14. "types": "./index.d.ts",
  15. "default": "./bundles/index.js"
  16. },
  17. "./package.json": {
  18. "default": "./package.json"
  19. },
  20. "./linker": {
  21. "types": "./linker/index.d.ts",
  22. "default": "./bundles/linker/index.js"
  23. },
  24. "./linker/babel": {
  25. "types": "./linker/babel/index.d.ts",
  26. "default": "./bundles/linker/babel/index.js"
  27. },
  28. "./private/bazel": {
  29. "types": "./private/bazel.d.ts",
  30. "default": "./bundles/private/bazel.js"
  31. },
  32. "./private/localize": {
  33. "types": "./private/localize.d.ts",
  34. "default": "./bundles/private/localize.js"
  35. },
  36. "./private/migrations": {
  37. "types": "./private/migrations.d.ts",
  38. "default": "./bundles/private/migrations.js"
  39. },
  40. "./private/tooling": {
  41. "types": "./private/tooling.d.ts",
  42. "default": "./bundles/private/tooling.js"
  43. }
  44. },
  45. "dependencies": {
  46. "@babel/core": "7.26.9",
  47. "@jridgewell/sourcemap-codec": "^1.4.14",
  48. "reflect-metadata": "^0.2.0",
  49. "chokidar": "^4.0.0",
  50. "convert-source-map": "^1.5.1",
  51. "semver": "^7.0.0",
  52. "tslib": "^2.3.0",
  53. "yargs": "^17.2.1"
  54. },
  55. "peerDependencies": {
  56. "@angular/compiler": "19.2.4",
  57. "typescript": ">=5.5 <5.9"
  58. },
  59. "repository": {
  60. "type": "git",
  61. "url": "https://github.com/angular/angular.git",
  62. "directory": "packages/compiler-cli"
  63. },
  64. "keywords": [
  65. "angular",
  66. "compiler"
  67. ],
  68. "license": "MIT",
  69. "engines": {
  70. "node": "^18.19.1 || ^20.11.1 || >=22.0.0"
  71. },
  72. "bugs": {
  73. "url": "https://github.com/angular/angular/issues"
  74. },
  75. "homepage": "https://github.com/angular/angular/tree/main/packages/compiler-cli",
  76. "ng-update": {
  77. "packageGroup": [
  78. "@angular/core",
  79. "@angular/bazel",
  80. "@angular/common",
  81. "@angular/compiler",
  82. "@angular/compiler-cli",
  83. "@angular/animations",
  84. "@angular/elements",
  85. "@angular/platform-browser",
  86. "@angular/platform-browser-dynamic",
  87. "@angular/forms",
  88. "@angular/platform-server",
  89. "@angular/upgrade",
  90. "@angular/router",
  91. "@angular/language-service",
  92. "@angular/localize",
  93. "@angular/service-worker"
  94. ]
  95. }
  96. }