{
  "name": "@linuxcnc-node/hal",
  "version": "3.2.0",
  "description": "Node.js bindings for LinuxCNC HAL library",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "author": "Dariusz Majnert",
  "repository": {
    "type": "git",
    "url": "https://github.com/b0czek/linuxcnc-node.git",
    "directory": "packages/hal"
  },
  "license": "GPL-2.0-only",
  "dependencies": {
    "node-addon-api": "^8.3.1",
    "node-gyp": "^11.2.0",
    "@linuxcnc-node/types": "3.2.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^22.15.21",
    "jest": "^29.7.0",
    "ts-jest": "^29.3.4",
    "typescript": "^5.8.3"
  },
  "files": [
    "dist/",
    "src/cpp",
    "binding.gyp",
    "README.md"
  ],
  "gypfile": true,
  "os": [
    "linux"
  ],
  "keywords": [
    "linuxcnc",
    "hal",
    "cnc",
    "hardware abstraction layer",
    "machining",
    "automation",
    "robotics",
    "motion control",
    "native",
    "addon",
    "bindings",
    "manufacturing",
    "industrial"
  ],
  "scripts": {
    "build:ts": "tsc",
    "build:cpp": "node-gyp configure && node-gyp build",
    "build": "pnpm run build:cpp && pnpm run build:ts",
    "rebuild": "node-gyp rebuild",
    "install": "node-gyp configure && node-gyp build",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage"
  }
}