{
  "name": "@simulacrum/server",
  "version": "0.10.1",
  "description": "Helpers and control plane to handle simulators and observability",
  "keywords": [
    "emulation",
    "integration testing",
    "mock",
    "mocking",
    "simulation"
  ],
  "bugs": {
    "url": "https://github.com/thefrontside/simulacrum/issues"
  },
  "license": "MIT",
  "author": "Frontside Engineering <engineering@frontside.com>",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thefrontside/simulacrum.git",
    "directory": "packages/server"
  },
  "bin": {
    "server": "./dist/run-simulation-child.mjs"
  },
  "files": [
    "README.md",
    "dist",
    "src"
  ],
  "type": "module",
  "types": "./dist/index.d.cts",
  "typesVersions": {
    "*": {
      "*": [
        "./dist/*",
        "./*"
      ]
    }
  },
  "exports": {
    ".": "./dist/index.mjs",
    "./run-simulation-child": "./dist/run-simulation-child.mjs",
    "./package.json": "./package.json"
  },
  "dependencies": {
    "@effectionx/context-api": "^0.6.0",
    "@effectionx/process": "^0.8.1",
    "@effectionx/stream-helpers": "^0.8.2",
    "@effectionx/timebox": "^0.4.3",
    "chokidar": "^5.0.0",
    "effection": "^4.0.3",
    "picomatch": "^4.0.4"
  },
  "devDependencies": {
    "@types/picomatch": "^4.0.3",
    "@simulacrum/foundation-simulator": "^0.8.0"
  },
  "scripts": {
    "build": "tsdown",
    "clean": "echo skip",
    "lint": "oxlint",
    "test": "node --test-timeout=60000 --test test/*.test.ts",
    "test:service-main": "node ./test/services/service-main.ts",
    "tsc": "tsc --noEmit"
  }
}