{
  "name": "@paymoapp/active-window",
  "version": "2.1.4",
  "description": "NodeJS library using native modules to get the active window and some metadata (including the application icon) on Windows, MacOS and Linux.",
  "main": "./dist/index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "install": "prebuild-install -r napi || node-gyp rebuild",
    "demo": "ts-node --project tsconfig.json demo/index.ts",
    "build": "npm run clean && npm run build:ts && npm run build:gyp",
    "build:ts": "tsc --project tsconfig.build.json",
    "build:gyp": "node-gyp rebuild",
    "prebuild": "prebuild --all -r napi --strip",
    "clean": "node-gyp clean && rimraf dist",
    "typecheck": "tsc --noEmit",
    "lint": "esw --color --ext .ts src demo",
    "lint:fix": "esw --color --fix --ext .ts src demo",
    "lint:watch": "esw --color --fix --watch --cache --ext .ts src demo",
    "format": "prettier --write src demo",
    "release": "standard-version",
    "release:pre": "standard-version --prerelease",
    "generate:readme-toc": "markdown-toc -i --bullets=\"-\" --maxdepth=4 README.md"
  },
  "binary": {
    "napi_versions": [
      6
    ]
  },
  "files": [
    "binding.gyp",
    "dist/",
    "module/"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/paymo-org/node-active-window"
  },
  "keywords": [
    "node",
    "native",
    "active",
    "window"
  ],
  "author": "Paymo SRL",
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^17.0.35",
    "@types/ws": "^8.5.3",
    "@typescript-eslint/eslint-plugin": "^5.26.0",
    "@typescript-eslint/parser": "^5.26.0",
    "eslint": "^8.16.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-watch": "^8.0.0",
    "markdown-toc": "^1.2.0",
    "node-gyp": "^9.0.0",
    "prebuild": "^13.0.1",
    "prettier": "^2.6.2",
    "rimraf": "^3.0.2",
    "standard-version": "^9.5.0",
    "ts-node": "^10.8.1",
    "typescript": "^4.6.4",
    "ws": "^8.7.0"
  },
  "dependencies": {
    "node-addon-api": "^5.0.0",
    "prebuild-install": "^7.1.2"
  },
  "standard-version": {
    "scripts": {
      "prerelease": "git fetch --all --tags"
    },
    "types": [
      {
        "type": "feat",
        "section": "Features"
      },
      {
        "type": "fix",
        "section": "Bug Fixes"
      },
      {
        "type": "imp",
        "section": "Improvements"
      },
      {
        "type": "ci",
        "section": "Build/CI"
      },
      {
        "type": "chore",
        "hidden": true
      },
      {
        "type": "docs",
        "section": "Documentation"
      },
      {
        "type": "refactor",
        "section": "Refactor"
      },
      {
        "type": "test",
        "section": "Testing"
      }
    ]
  }
}
