package.json 764 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "copy-text-to-clipboard",
  3. "version": "3.1.0",
  4. "description": "Copy text to the clipboard in modern browsers (0.2 kB)",
  5. "license": "MIT",
  6. "repository": "sindresorhus/copy-text-to-clipboard",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "https://sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": "./index.js",
  15. "engines": {
  16. "node": ">=12"
  17. },
  18. "scripts": {
  19. "//test": "xo && tsd",
  20. "test": "xo"
  21. },
  22. "files": [
  23. "index.js",
  24. "index.d.ts"
  25. ],
  26. "keywords": [
  27. "copy",
  28. "text",
  29. "clipboard",
  30. "browser",
  31. "clipboard.js",
  32. "modern"
  33. ],
  34. "devDependencies": {
  35. "tsd": "^0.14.0",
  36. "xo": "^0.37.1"
  37. },
  38. "xo": {
  39. "envs": [
  40. "browser"
  41. ]
  42. }
  43. }