package.json 1.4 KB

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