{
  "name": "@echelon-framework/mock-server",
  "version": "0.7.1",
  "description": "Standalone Node mock server dla Echelon — HTTP + WebSocket z deklaratywnym fixture + symulatorem.",
  "license": "BUSL-1.1",
  "type": "module",
  "main": "./index.js",
  "types": "./index.d.ts",
  "bin": {
    "echelon-mock-server": "./cli.js"
  },
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "import": "./index.js"
    },
    "./cli": {
      "import": "./cli.js"
    }
  },
  "scripts": {
    "build": "tsc -p tsconfig.json",
    "typecheck": "tsc -p tsconfig.json --noEmit",
    "lint": "eslint src",
    "test": "vitest run --reporter verbose",
    "start": "node dist/cli.js"
  },
  "dependencies": {
    "ws": "^8.18.0"
  },
  "devDependencies": {
    "@types/ws": "^8.5.0"
  },
  "files": [
    "README.md",
    "cli.d.ts",
    "cli.d.ts.map",
    "cli.js",
    "cli.js.map",
    "index.d.ts",
    "index.d.ts.map",
    "index.js",
    "index.js.map"
  ],
  "author": "jkolecki",
  "repository": {
    "type": "git",
    "url": "git+https://gitlab.com/echelon-framework/echelon.git",
    "directory": "packages/mock-server"
  },
  "bugs": {
    "url": "https://gitlab.com/echelon-framework/echelon/issues"
  },
  "homepage": "https://gitlab.com/echelon-framework/echelon/tree/main/packages/mock-server",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "echelon",
    "angular",
    "dashboard",
    "config-driven",
    "json-driven",
    "fintech",
    "trading",
    "mock-server",
    "http",
    "websocket",
    "fixtures",
    "cli"
  ]
}