{
  "name": "@aztec/acir-simulator",
  "version": "0.21.0",
  "type": "module",
  "exports": "./dest/index.js",
  "typedocOptions": {
    "entryPoints": [
      "./src/index.ts"
    ],
    "name": "Acir Simulator",
    "tsconfig": "./tsconfig.json"
  },
  "scripts": {
    "build": "yarn clean && tsc -b",
    "build:dev": "tsc -b --watch",
    "clean": "rm -rf ./dest .tsbuildinfo",
    "formatting": "run -T prettier --check ./src && run -T eslint ./src",
    "formatting:fix": "run -T eslint --fix ./src && run -T prettier -w ./src",
    "test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules $(yarn bin jest) --passWithNoTests"
  },
  "inherits": [
    "../package.common.json"
  ],
  "jest": {
    "preset": "ts-jest/presets/default-esm",
    "moduleNameMapper": {
      "^(\\.{1,2}/.*)\\.[cm]?js$": "$1"
    },
    "testRegex": "./src/.*\\.test\\.(js|mjs|ts)$",
    "rootDir": "./src"
  },
  "dependencies": {
    "@aztec/circuit-types": "0.21.0",
    "@aztec/circuits.js": "0.21.0",
    "@aztec/foundation": "0.21.0",
    "@noir-lang/acvm_js": "portal:../../noir/packages/acvm_js",
    "levelup": "^5.1.1",
    "memdown": "^6.1.1",
    "tslib": "^2.4.0"
  },
  "devDependencies": {
    "@aztec/kv-store": "workspace:^",
    "@aztec/merkle-tree": "workspace:^",
    "@aztec/noir-contracts": "workspace:^",
    "@jest/globals": "^29.5.0",
    "@types/jest": "^29.5.0",
    "@types/levelup": "^5.1.3",
    "@types/memdown": "^3.0.2",
    "@types/node": "^18.7.23",
    "jest": "^29.5.0",
    "jest-mock-extended": "^3.0.4",
    "ts-jest": "^29.1.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.0.4",
    "viem": "^1.2.5"
  },
  "files": [
    "dest",
    "src",
    "!*.test.*"
  ],
  "types": "./dest/index.d.ts",
  "engines": {
    "node": ">=18"
  }
}
