package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@ionic/angular",
  3. "version": "8.5.7",
  4. "description": "Angular specific wrappers for @ionic/core",
  5. "keywords": [
  6. "ionic",
  7. "framework",
  8. "angular",
  9. "mobile",
  10. "app",
  11. "webapp",
  12. "capacitor",
  13. "cordova",
  14. "progressive web app",
  15. "pwa"
  16. ],
  17. "license": "MIT",
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/ionic-team/ionic-framework.git"
  21. },
  22. "bugs": {
  23. "url": "https://github.com/ionic-team/ionic-framework/issues"
  24. },
  25. "homepage": "https://ionicframework.com/",
  26. "exports": {
  27. "./css/*": {
  28. "style": "./css/*"
  29. },
  30. "./package.json": {
  31. "default": "./package.json"
  32. },
  33. ".": {
  34. "types": "./index.d.ts",
  35. "esm2022": "./esm2022/ionic-angular.mjs",
  36. "esm": "./esm2022/ionic-angular.mjs",
  37. "default": "./fesm2022/ionic-angular.mjs"
  38. },
  39. "./common": {
  40. "types": "./common/index.d.ts",
  41. "esm2022": "./esm2022/common/ionic-angular-common.mjs",
  42. "esm": "./esm2022/common/ionic-angular-common.mjs",
  43. "default": "./fesm2022/ionic-angular-common.mjs"
  44. },
  45. "./standalone": {
  46. "types": "./standalone/index.d.ts",
  47. "esm2022": "./esm2022/standalone/ionic-angular-standalone.mjs",
  48. "esm": "./esm2022/standalone/ionic-angular-standalone.mjs",
  49. "default": "./fesm2022/ionic-angular-standalone.mjs"
  50. }
  51. },
  52. "dependencies": {
  53. "@ionic/core": "8.5.7",
  54. "ionicons": "^7.0.0",
  55. "jsonc-parser": "^3.0.0",
  56. "tslib": "^2.3.0"
  57. },
  58. "peerDependencies": {
  59. "@angular/core": ">=16.0.0",
  60. "@angular/forms": ">=16.0.0",
  61. "@angular/router": ">=16.0.0",
  62. "rxjs": ">=7.5.0",
  63. "zone.js": ">=0.13.0"
  64. },
  65. "schematics": "./schematics/collection.json",
  66. "module": "fesm2022/ionic-angular.mjs",
  67. "typings": "index.d.ts",
  68. "sideEffects": false
  69. }