package.json 951 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "ng-recaptcha",
  3. "description": "Angular component for Google reCAPTCHA",
  4. "version": "12.0.1",
  5. "author": "Ruslan Arkhipau <dethariel@gmail.com>",
  6. "license": "MIT",
  7. "repository": {
  8. "type": "git",
  9. "url": "git+https://github.com/DethAriel/ng-recaptcha"
  10. },
  11. "homepage": "https://github.com/DethAriel/ng-recaptcha#readme",
  12. "keywords": [
  13. "angular",
  14. "recaptcha",
  15. "angular-recaptcha",
  16. "ng-recaptcha"
  17. ],
  18. "peerDependencies": {
  19. "@angular/core": "^16.0.0"
  20. },
  21. "dependencies": {
  22. "@types/grecaptcha": "^3.0.3",
  23. "tslib": "^2.2.0"
  24. },
  25. "module": "fesm2022/ng-recaptcha.mjs",
  26. "typings": "index.d.ts",
  27. "exports": {
  28. "./package.json": {
  29. "default": "./package.json"
  30. },
  31. ".": {
  32. "types": "./index.d.ts",
  33. "esm2022": "./esm2022/ng-recaptcha.mjs",
  34. "esm": "./esm2022/ng-recaptcha.mjs",
  35. "default": "./fesm2022/ng-recaptcha.mjs"
  36. }
  37. },
  38. "sideEffects": false
  39. }