{
  "name": "@fork-anyone/node-mac-permissions",
  "version": "2.7.1",
  "description": "A native node module to manage system permissions on macOS",
  "keywords": [
    "permissions",
    "macos",
    "node",
    "napi",
    "native"
  ],
  "files": [
    "lib/",
    "test",
    "binding.gyp",
    "index.js",
    "index.d.ts",
    "LICENSE",
    "package.json",
    "permissions.mm",
    "README.md"
  ],
  "homepage": "https://github.com/codebytere/node-mac-permissions#readme",
  "bugs": {
    "url": "https://github.com/codebytere/node-mac-permissions/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/codebytere/node-mac-permissions.git"
  },
  "license": "MIT",
  "author": "Shelley Vohr <shelley.vohr@gmail.com>",
  "main": "index.js",
  "types": "index.d.ts",
  "binary": {
    "module_name": "node-mac-permissions",
    "module_path": "./lib/binding/napi-{platform}-{arch}",
    "remote_path": "./",
    "package_name": "napi-{module_name}-{platform}-{arch}.tar.gz",
    "host": "https://localhost"
  },
  "scripts": {
    "build": "node-pre-gyp rebuild",
    "postinstall": "npm run build",
    "clean": "node-pre-gyp clean",
    "format": "clang-format -i permissions.mm && prettier --write index.js",
    "lint": "clang-format --dry-run -Werror permissions.mm && prettier --check index.js",
    "prepare": "husky install",
    "test": "./node_modules/.bin/mocha --reporter spec"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write"
    ],
    "*.mm": [
      "clang-format -i"
    ]
  },
  "dependencies": {
    "@mapbox/node-pre-gyp": "^2.0.0",
    "bindings": "^1.5.0",
    "node-addon-api": "^7.1.0"
  },
  "devDependencies": {
    "chai": "^4.3.6",
    "clang-format": "1.8.0",
    "husky": "^9.1.7",
    "lint-staged": "^15.5.0",
    "mocha": "^11.1.0",
    "prettier": "^3.5.3"
  },
  "os": [
    "darwin"
  ]
}
