{
  "author": "Sebastian Pekarek <mail@sebbo.net>",
  "bin": {
    "fhemlog2db": "./dist/bin/cli.cjs"
  },
  "bugs": {
    "url": "https://github.com/sebbo2002/fhem-log2db/issues"
  },
  "dependencies": {
    "@prisma/client": "^5.17.0",
    "extract-zip": "^2.0.1",
    "prisma": "^5.17.0",
    "prompts": "^2.4.2",
    "targz": "^1.0.1",
    "tempy": "^3.1.0"
  },
  "description": "Small CLI tool that parses FHEM log entries and pushes entries into a database.",
  "devDependencies": {
    "@eslint/js": "^9.8.0",
    "@qiwi/semantic-release-gh-pages-plugin": "^5.2.12",
    "@sebbo2002/semantic-release-docker": "^4.0.2",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/exec": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/npm": "^12.0.1",
    "@types/eslint__js": "^8.42.3",
    "@types/mocha": "^10.0.7",
    "@types/node": "^22.1.0",
    "@types/prompts": "^2.4.9",
    "@types/targz": "^1.0.4",
    "c8": "^10.1.2",
    "eslint": "^9.8.0",
    "eslint-plugin-jsonc": "^2.16.0",
    "esm": "^3.2.25",
    "license-checker": "^25.0.1",
    "mocha": "^10.6.0",
    "mochawesome": "^7.1.3",
    "semantic-release-license": "^1.0.3",
    "source-map-support": "^0.5.21",
    "ts-node": "^10.9.2",
    "tsup": "^8.2.4",
    "typedoc": "^0.26.3",
    "typescript": "^5.5.4",
    "typescript-eslint": "^8.0.0-alpha.62"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "exports": {
    "import": "./dist/lib/index.js",
    "require": "./dist/lib/index.cjs"
  },
  "files": [
    "/dist",
    "/src/prisma/schema.prisma",
    "/src/prisma/migrations"
  ],
  "homepage": "https://github.com/sebbo2002/fhem-log2db#readme",
  "license": "MIT",
  "main": "./dist/lib/index.cjs",
  "module": "./dist/lib/index.js",
  "name": "@sebbo2002/fhem-log2db",
  "prisma": {
    "schema": "./src/prisma/schema.prisma"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sebbo2002/fhem-log2db.git"
  },
  "scripts": {
    "build": "tsup && cp ./dist/lib/index.d.ts ./dist/lib/index.d.cts",
    "build-all": "./.github/workflows/build.sh",
    "coverage": "FHEM_LOG2DB_CONFIG=./test/config.default.json c8 mocha",
    "develop": "node --no-warnings --enable-source-maps --loader ts-node/esm src/bin/cli.ts",
    "license-check": "license-checker --production --summary",
    "lint": "eslint .",
    "start": "node ./dist/bin/start.js",
    "test": "FHEM_LOG2DB_CONFIG=./test/config.default.json mocha",
    "update-schema": "prisma generate"
  },
  "type": "module",
  "version": "3.0.13"
}
