Skip to content
Permalink
9bfb9ba527
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
github-actions[bot] Update checked-in dependencies
Latest commit 40a500c Jul 13, 2023 History
0 contributors

Users who have contributed to this file

44 lines (44 sloc) 886 Bytes
{
"name": "bundle-name",
"version": "3.0.0",
"description": "Get bundle name from a bundle identifier (macOS): `com.apple.Safari` → `Safari`",
"license": "MIT",
"repository": "sindresorhus/bundle-name",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./index.js",
"engines": {
"node": ">=12"
},
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"macos",
"plist",
"applescript",
"bundle",
"bundleid",
"bundlename",
"id",
"identifier",
"CFBundleName",
"CFBundleIdentifier",
"uti"
],
"dependencies": {
"run-applescript": "^5.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"xo": "^0.38.2"
}
}