{
  "name": "willi-mako-client",
  "version": "1.1.3",
  "description": "Official TypeScript client & CLI for the Willi-Mako API v2 – OpenAI-compatible chat completions, streaming chat, EDIFACT analysis, market communication & ETL automation for German energy sector",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./cli": {
      "import": "./dist/cli.js"
    },
    "./openapi.json": "./schemas/openapi.json"
  },
  "bin": {
    "willi-mako": "bin/willi-mako.cjs"
  },
  "files": [
    "bin",
    "dist",
    "schemas/openapi.json",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "clean": "rimraf dist coverage",
    "build": "tsc -p tsconfig.json",
    "dev": "tsc -p tsconfig.json --watch",
    "lint": "eslint src tests --ext .ts",
    "lint:fix": "eslint src tests --ext .ts --fix",
    "format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "docs": "typedoc",
    "prepare": "husky",
    "example:market-search": "node --loader ts-node/esm examples/market-partner-search.ts",
    "example:edifact-analyze": "node --loader ts-node/esm examples/edifact-analyzer-demo.ts",
    "example:utilmd": "node --loader ts-node/esm examples/utilmd-audit.ts",
    "example:mscons": "node --loader ts-node/esm examples/mscons-clearing.ts",
    "example:orders": "node --loader ts-node/esm examples/orders-incident-report.ts",
    "example:pricat": "node --loader ts-node/esm examples/pricat-price-sync.ts",
    "example:invoic": "node --loader ts-node/esm examples/invoic-archive.ts",
    "example:structured-data": "node --loader ts-node/esm examples/structured-data-query.ts",
    "example:streaming": "node --loader ts-node/esm examples/streaming-chat.ts",
    "example:openai-chat": "node --loader ts-node/esm examples/openai-compatible-chat.ts"
  },
  "keywords": [
    "willi-mako",
    "stromdao",
    "energy",
    "marktkommunikation",
    "edi@energy",
    "utilmd",
    "mscons",
    "orders",
    "pricat",
    "invoic",
    "streaming",
    "sse",
    "server-sent-events",
    "real-time",
    "etl",
    "compliance",
    "audit",
    "api-client",
    "sdk",
    "cli",
    "typescript",
    "automation",
    "german-energy",
    "utility",
    "mcp-server",
    "ai-agents",
    "workflow",
    "integration",
    "edifact",
    "gpke",
    "wim",
    "geli-gas"
  ],
  "author": "STROMDAO GmbH",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/energychain/willi-mako-client.git"
  },
  "homepage": "https://github.com/energychain/willi-mako-client#readme",
  "bugs": {
    "url": "https://github.com/energychain/willi-mako-client/issues"
  },
  "funding": {
    "type": "custom",
    "url": "mailto:dev@stromdao.com"
  },
  "engines": {
    "node": ">=18.0.0",
    "npm": ">=9.0.0"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "sideEffects": false,
  "dependencies": {
    "@cfworker/json-schema": "^4.1.1",
    "@google/generative-ai": "^0.18.0",
    "@modelcontextprotocol/sdk": "^1.20.0",
    "commander": "^11.1.0",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@types/node": "^20.11.30",
    "@typescript-eslint/eslint-plugin": "^7.0.0",
    "@typescript-eslint/parser": "^7.0.0",
    "@vitest/coverage-v8": "^2.1.8",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "husky": "^9.0.11",
    "lint-staged": "^15.2.2",
    "prettier": "^3.2.5",
    "rimraf": "^6.0.1",
    "typedoc": "^0.26.0",
    "typescript": "~5.5.4",
    "vitest": "^2.1.8"
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix --max-warnings 50",
      "prettier --write"
    ]
  }
}
