package.json 983 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "open",
  3. "version": "8.4.2",
  4. "description": "Open stuff like URLs, files, executables. Cross-platform.",
  5. "license": "MIT",
  6. "repository": "sindresorhus/open",
  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. "engines": {
  14. "node": ">=12"
  15. },
  16. "scripts": {
  17. "test": "xo && tsd"
  18. },
  19. "files": [
  20. "index.js",
  21. "index.d.ts",
  22. "xdg-open"
  23. ],
  24. "keywords": [
  25. "app",
  26. "open",
  27. "opener",
  28. "opens",
  29. "launch",
  30. "start",
  31. "xdg-open",
  32. "xdg",
  33. "default",
  34. "cmd",
  35. "browser",
  36. "editor",
  37. "executable",
  38. "exe",
  39. "url",
  40. "urls",
  41. "arguments",
  42. "args",
  43. "spawn",
  44. "exec",
  45. "child",
  46. "process",
  47. "website",
  48. "file"
  49. ],
  50. "dependencies": {
  51. "define-lazy-prop": "^2.0.0",
  52. "is-docker": "^2.1.1",
  53. "is-wsl": "^2.2.0"
  54. },
  55. "devDependencies": {
  56. "@types/node": "^15.0.0",
  57. "ava": "^3.15.0",
  58. "tsd": "^0.14.0",
  59. "xo": "^0.39.1"
  60. }
  61. }