package.json 772 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "screenfull",
  3. "version": "6.0.2",
  4. "description": "Simple wrapper for cross-browser usage of the JavaScript Fullscreen API, which lets you bring the page or any element into fullscreen.",
  5. "license": "MIT",
  6. "repository": "sindresorhus/screenfull",
  7. "funding": "https://github.com/sponsors/sindresorhus",
  8. "author": {
  9. "name": "Sindre Sorhus",
  10. "email": "sindresorhus@gmail.com",
  11. "url": "sindresorhus.com"
  12. },
  13. "type": "module",
  14. "exports": "./index.js",
  15. "engines": {
  16. "node": "^14.13.1 || >=16.0.0"
  17. },
  18. "scripts": {
  19. "test": "xo && tsd"
  20. },
  21. "files": [
  22. "index.js",
  23. "index.d.ts"
  24. ],
  25. "keywords": [
  26. "browser",
  27. "fullscreen"
  28. ],
  29. "devDependencies": {
  30. "tsd": "^0.18.0",
  31. "xo": "^0.45.0"
  32. },
  33. "xo": {
  34. "envs": [
  35. "node",
  36. "browser"
  37. ]
  38. }
  39. }