package.json (823B)
1 { 2 "name": "default-browser-id", 3 "version": "3.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 "engines": { 16 "node": ">=12" 17 }, 18 "scripts": { 19 "test": "xo && ava" 20 }, 21 "files": [ 22 "index.js" 23 ], 24 "keywords": [ 25 "macos", 26 "browser", 27 "default", 28 "plist", 29 "web", 30 "bundle", 31 "bundleid", 32 "id", 33 "identifier", 34 "uti" 35 ], 36 "dependencies": { 37 "bplist-parser": "^0.2.0", 38 "untildify": "^4.0.0" 39 }, 40 "devDependencies": { 41 "ava": "^3.15.0", 42 "xo": "^0.38.2" 43 } 44 }