{
  "name": "amaran-light-cli",
  "version": "1.10.0",
  "type": "module",
  "description": "Command line tool for controlling Aputure Amaran lights via WebSocket to a local Amaran desktop app.",
  "main": "dist/lightControl.js",
  "types": "dist/lightControl.d.ts",
  "bin": {
    "amaran-cli": "dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "start": "node dist/cli.js",
    "dev": "tsx src/cli.ts",
    "test": "./scripts/test.sh",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run clean && npm run build",
    "lint": "biome lint .",
    "lint:fix": "biome lint --write .",
    "lint:deprecations": "eslint .",
    "format": "biome format --write .",
    "format:check": "biome format .",
    "check": "biome check .",
    "check:fix": "biome check --write .",
    "release": "node scripts/release.js"
  },
  "files": [
    "dist",
    "scripts",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/theontho/amaran-cli.git"
  },
  "bugs": {
    "url": "https://github.com/theontho/amaran-cli/issues"
  },
  "homepage": "https://github.com/theontho/amaran-cli#readme",
  "keywords": [
    "amaran",
    "aputure",
    "lighting",
    "cli",
    "websocket",
    "smart-home",
    "home-automation",
    "circadian"
  ],
  "author": "Mahyar McDonald <github@hmmfn.com>",
  "license": "MIT",
  "engines": {
    "node": ">=14.0.0"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "chart.js": "^4.5.1",
    "chartjs-node-canvas": "^5.0.0",
    "commander": "^14.0.0",
    "geoip-lite": "^1.4.10",
    "suncalc": "^1.9.0",
    "ws": "^8.14.2"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.8",
    "@types/geoip-lite": "^1.4.4",
    "@types/node": "^24.0.0",
    "@types/node-localstorage": "^1.3.3",
    "@types/suncalc": "^1.9.0",
    "@types/ws": "^8.5.8",
    "@vitest/coverage-v8": "^4.0.15",
    "cheerio": "^1.1.2",
    "cross-env": "^10.1.0",
    "eslint": "^9.39.2",
    "node-localstorage": "^3.0.5",
    "tsx": "^4.7.1",
    "typescript": "^5.2.2",
    "typescript-eslint": "^8.50.0",
    "vitest": "^4.0.15"
  }
}
