{
  "name": "@aztec/simulator",
  "version": "5.2.0",
  "type": "module",
  "exports": {
    "./server": "./dest/server.js",
    "./client": "./dest/client.js",
    "./testing": "./dest/testing.js",
    "./public/fixtures": "./dest/public/fixtures/index.js",
    "./public/avm/opcodes": "./dest/public/avm/opcodes/index.js"
  },
  "typedocOptions": {
    "entryPoints": [
      "./src/index.ts"
    ],
    "name": "Simulator",
    "tsconfig": "./tsconfig.json"
  },
  "scripts": {
    "build": "yarn clean && ../scripts/tsc.sh",
    "build:dev": "../scripts/tsc.sh --watch",
    "clean": "rm -rf ./dest .tsbuildinfo",
    "test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}",
    "build:fuzzer": "yarn clean && ../scripts/tsc.sh"
  },
  "inherits": [
    "../package.common.json"
  ],
  "jest": {
    "moduleNameMapper": {
      "^(\\.{1,2}/.*)\\.[cm]?js$": "$1"
    },
    "testRegex": "./src/.*\\.test\\.(js|mjs|ts)$",
    "rootDir": "./src",
    "transform": {
      "^.+\\.tsx?$": [
        "@swc/jest",
        {
          "jsc": {
            "parser": {
              "syntax": "typescript",
              "decorators": true
            },
            "transform": {
              "decoratorVersion": "2022-03"
            }
          }
        }
      ]
    },
    "extensionsToTreatAsEsm": [
      ".ts"
    ],
    "reporters": [
      "default"
    ],
    "testTimeout": 120000,
    "setupFiles": [
      "../../foundation/src/jest/setup.mjs"
    ],
    "testEnvironment": "../../foundation/src/jest/env.mjs",
    "setupFilesAfterEnv": [
      "../../foundation/src/jest/setupAfterEnv.mjs"
    ]
  },
  "dependencies": {
    "@aztec/constants": "5.2.0",
    "@aztec/foundation": "5.2.0",
    "@aztec/native": "5.2.0",
    "@aztec/noir-acvm_js": "5.2.0",
    "@aztec/noir-noirc_abi": "5.2.0",
    "@aztec/noir-protocol-circuits-types": "5.2.0",
    "@aztec/noir-types": "5.2.0",
    "@aztec/protocol-contracts": "5.2.0",
    "@aztec/standard-contracts": "5.2.0",
    "@aztec/stdlib": "5.2.0",
    "@aztec/telemetry-client": "5.2.0",
    "@aztec/world-state": "5.2.0",
    "lodash.clonedeep": "^4.5.0",
    "lodash.merge": "^4.6.2",
    "tslib": "^2.4.0"
  },
  "devDependencies": {
    "@aztec/kv-store": "5.2.0",
    "@aztec/noir-contracts.js": "5.2.0",
    "@aztec/noir-test-contracts.js": "5.2.0",
    "@jest/globals": "^30.0.0",
    "@types/jest": "^30.0.0",
    "@types/lodash.clonedeep": "^4.5.7",
    "@types/lodash.merge": "^4.6.9",
    "@types/node": "^22.15.17",
    "@typescript/native-preview": "7.0.0-dev.20260113.1",
    "istanbul-lib-hook": "^3.0.0",
    "istanbul-lib-instrument": "^6.0.3",
    "jest": "^30.0.0",
    "jest-mock-extended": "^4.0.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.3",
    "viem": "npm:@aztec/viem@2.38.2"
  },
  "files": [
    "dest",
    "src",
    "!*.test.*"
  ],
  "types": "./dest/index.d.ts",
  "engines": {
    "node": ">=20.10"
  }
}
