package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "name": "ngx-captcha",
  3. "version": "13.0.0",
  4. "license": "MIT",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/Enngage/ngx-captcha"
  8. },
  9. "author": "richard sustek",
  10. "description": "Dynamic captcha (Google reCaptcha) implementation for Angular",
  11. "keywords": [
  12. "Captcha",
  13. "reCaptcha",
  14. "Google captcha",
  15. "Angular Captcha",
  16. "Angular reCaptcha",
  17. "reCaptcha v2",
  18. "reCaptcha v3",
  19. "Invisible reCaptcha",
  20. "google reCaptcha"
  21. ],
  22. "private": false,
  23. "peerDependencies": {
  24. "@angular/common": ">= 15.0.0",
  25. "@angular/core": ">= 15.0.0"
  26. },
  27. "module": "fesm2015/ngx-captcha.mjs",
  28. "es2020": "fesm2020/ngx-captcha.mjs",
  29. "esm2020": "esm2020/ngx-captcha.mjs",
  30. "fesm2020": "fesm2020/ngx-captcha.mjs",
  31. "fesm2015": "fesm2015/ngx-captcha.mjs",
  32. "typings": "index.d.ts",
  33. "exports": {
  34. "./package.json": {
  35. "default": "./package.json"
  36. },
  37. ".": {
  38. "types": "./index.d.ts",
  39. "esm2020": "./esm2020/ngx-captcha.mjs",
  40. "es2020": "./fesm2020/ngx-captcha.mjs",
  41. "es2015": "./fesm2015/ngx-captcha.mjs",
  42. "node": "./fesm2015/ngx-captcha.mjs",
  43. "default": "./fesm2020/ngx-captcha.mjs"
  44. }
  45. },
  46. "sideEffects": false,
  47. "dependencies": {
  48. "tslib": "^2.3.0"
  49. }
  50. }