{
  "name": "@linuxcnc-node/core",
  "version": "4.0.0",
  "description": "Node.js bindings for core LinuxCNC NML interface",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=24.15.0"
  },
  "author": "Dariusz Majnert",
  "repository": {
    "type": "git",
    "url": "https://github.com/b0czek/linuxcnc-node.git",
    "directory": "packages/core"
  },
  "license": "GPL-2.0-only",
  "dependencies": {
    "dlv": "^1.1.3",
    "dset": "^3.1.4",
    "node-addon-api": "^8.9.0",
    "node-gyp": "^13.0.1",
    "@linuxcnc-node/types": "4.0.0"
  },
  "devDependencies": {
    "@types/dlv": "^1.1.5",
    "@types/jest": "^30.0.0",
    "@types/node": "^24.13.3",
    "jest": "^30.4.2",
    "ts-jest": "^29.4.12",
    "typedoc": "^0.28.20",
    "typescript": "^6.0.3"
  },
  "files": [
    "dist/",
    "src/cpp",
    "scripts/",
    "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 --runInBand",
    "test:types": "tsc -p tsconfig.type-tests.json",
    "test:unit": "jest --runInBand --testPathPatterns=tests/unit",
    "test:integration": "jest --runInBand --testPathPatterns=tests/integration",
    "test:all": "pnpm run test:unit && pnpm run test:integration",
    "test:coverage": "jest --coverage --runInBand",
    "docs": "typedoc"
  }
}