{
  "name": "ev-charging-simulator",
  "version": "1.2.1",
  "description": "Production-ready OCPP 1.6 EV charging station simulator. Works as a reusable TypeScript library or standalone server for testing CSMS integration.",
  "keywords": [
    "ocpp",
    "ocpp1.6",
    "ev-charging",
    "charging-station",
    "csms",
    "electric-vehicle",
    "simulator",
    "testing",
    "charger",
    "evse",
    "typescript",
    "nodejs",
    "websocket"
  ],
  "author": {
    "name": "EV Charging Simulator Contributors"
  },
  "license": "MIT",
  "homepage": "https://www.npmjs.com/package/ev-charging-simulator",
  "repository": {
    "type": "git",
    "url": "https://github.com/Larsperceus/ev-charging-simulator.git"
  },
  "bugs": {
    "url": "https://github.com/larsperceus/ev-charging-simulator/issues"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "type": "module",
  "main": "dist/public.js",
  "types": "dist/public.d.ts",
  "exports": {
    ".": {
      "types": "./dist/public.d.ts",
      "import": "./dist/public.js"
    },
    "./server": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "files": [
    "dist/**/*",
    "!dist/**/__tests__/**",
    "!dist/supabaseService.js",
    "brand-profiles.json",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "prepublishOnly": "npm run build",
    "build": "tsc",
    "bundle:exe": "esbuild src/index.ts --bundle --platform=node --target=node20 --format=cjs --minify --legal-comments=none --outfile=build/charger-service.cjs",
    "start": "node dist/index.js",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "test:ci": "vitest run --coverage",
    "docs": "typedoc"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "dependencies": {
    "ajv": "^8.17.1",
    "express": "^4.18.2",
    "multicast-dns": "^7.2.5",
    "pino": "^9.0.0",
    "selfsigned": "^2.4.1",
    "ws": "^8.16.0"
  },
  "devDependencies": {
    "@types/express": "^4.17.21",
    "@types/multicast-dns": "^7.2.4",
    "@types/supertest": "^2.0.16",
    "@types/ws": "^8.5.10",
    "@vitest/coverage-v8": "^4.1.9",
    "esbuild": "^0.28.0",
    "supertest": "^7.1.3",
    "typedoc": "^0.28.19",
    "typescript": "^5.4.2",
    "vitest": "^4.1.9"
  }
}
