{
  "name": "energy-manager-iot",
  "version": "1.1.1",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "build": "tsc",
    "start": "node dist/index.js",
    "dev": "ts-node src/index.ts",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:debug": "jest --detectOpenHandles",
    "test:coverage": "jest --coverage",
    "test:integration": "cross-env RUN_INTEGRATION_TESTS=1 jest --config=jest.integration.config.js",
    "test:integration:windows": "set RUN_INTEGRATION_TESTS=1 && jest --config=jest.integration.config.js",
    "lint": "eslint src/**/*.ts",
    "format": "prettier --write src/**/*.ts",
    "prepare": "npm run build",
    "example:basic": "ts-node examples/basic-usage.ts",
    "example:group": "ts-node examples/group-management.ts",
    "example:simulator": "ts-node examples/device-simulator.ts",
    "example:logging": "ts-node examples/advanced-logging.ts"
  },
  "keywords": [
    "iot",
    "energy",
    "management",
    "mqtt"
  ],
  "author": "",
  "license": "ISC",
  "type": "commonjs",
  "description": "Library for energy management in IoT devices via MQTT protocol. Documentation: https://jonhvmp.github.io/energy-manager-iot-docs/",
  "homepage": "https://jonhvmp.github.io/energy-manager-iot-docs/",
  "dependencies": {
    "energy-manager-iot": "^1.1.0",
    "mqtt": "^5.0.3",
    "winston": "^3.10.0"
  },
  "devDependencies": {
    "@types/jest": "^29.5.4",
    "@types/mqtt": "^2.5.0",
    "@types/node": "^22.13.13",
    "@typescript-eslint/eslint-plugin": "^8.28.0",
    "@typescript-eslint/parser": "^8.28.0",
    "cross-env": "^7.0.3",
    "eslint": "^9.23.0",
    "jest": "^29.6.4",
    "prettier": "^3.0.3",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typescript": "^5.8.2"
  },
  "files": [
    "dist/**/*",
    "README.md"
  ],
  "engines": {
    "node": ">=14.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/jonhvmp/energy-manager-iot.git"
  },
  "bugs": {
    "url": "https://github.com/jonhvmp/energy-manager-iot/issues"
  }
}
