10
0

package.json 769 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "default-browser-id",
  3. "version": "5.0.0",
  4. "description": "Get the bundle identifier of the default browser (macOS). Example: com.apple.Safari",
  5. "license": "MIT",
  6. "repository": "sindresorhus/default-browser-id",
  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. "sideEffects": false,
  16. "engines": {
  17. "node": ">=18"
  18. },
  19. "scripts": {
  20. "test": "xo && ava"
  21. },
  22. "files": [
  23. "index.js"
  24. ],
  25. "keywords": [
  26. "macos",
  27. "browser",
  28. "default",
  29. "plist",
  30. "web",
  31. "bundle",
  32. "bundleid",
  33. "id",
  34. "identifier",
  35. "uti"
  36. ],
  37. "devDependencies": {
  38. "ava": "^6.0.1",
  39. "xo": "^0.56.0"
  40. }
  41. }