{
  "name": "@aztec/aztec",
  "version": "5.2.0",
  "type": "module",
  "exports": {
    ".": "./dest/index.js",
    "./deploy": "./dest/deploy/index.js",
    "./testing": "./dest/testing/index.js"
  },
  "bin": "./scripts/aztec.sh",
  "typedocOptions": {
    "entryPoints": [
      "./src/index.ts"
    ],
    "name": "Aztec Packages",
    "tsconfig": "./tsconfig.json"
  },
  "scripts": {
    "build": "yarn clean && ../scripts/tsc.sh",
    "start": "node --no-warnings ./dest/bin",
    "start:debug": "node --inspect=0.0.0.0:9221 --no-warnings ./dest/bin",
    "start:local-network": "ETHEREUM_HOSTS=http://0.0.0.0:8545/ && yarn start start --local-network",
    "clean": "rm -rf ./dest .tsbuildinfo",
    "build:dev": "../scripts/tsc.sh --watch",
    "test": "NODE_NO_WARNINGS=1 node --experimental-vm-modules ../node_modules/.bin/jest --passWithNoTests --maxWorkers=${JEST_MAX_WORKERS:-8}",
    "run:example:token": "LOG_LEVEL='verbose' node ./dest/examples/token.js"
  },
  "inherits": [
    "../package.common.json"
  ],
  "dependencies": {
    "@aztec/accounts": "5.2.0",
    "@aztec/archiver": "5.2.0",
    "@aztec/aztec-node": "5.2.0",
    "@aztec/aztec.js": "5.2.0",
    "@aztec/bb-prover": "5.2.0",
    "@aztec/bb.js": "5.2.0",
    "@aztec/blob-client": "5.2.0",
    "@aztec/bot": "5.2.0",
    "@aztec/builder": "5.2.0",
    "@aztec/cli": "5.2.0",
    "@aztec/constants": "5.2.0",
    "@aztec/entrypoints": "5.2.0",
    "@aztec/ethereum": "5.2.0",
    "@aztec/foundation": "5.2.0",
    "@aztec/kv-store": "5.2.0",
    "@aztec/l1-artifacts": "5.2.0",
    "@aztec/node-lib": "5.2.0",
    "@aztec/noir-contracts.js": "5.2.0",
    "@aztec/noir-protocol-circuits-types": "5.2.0",
    "@aztec/p2p": "5.2.0",
    "@aztec/p2p-bootstrap": "5.2.0",
    "@aztec/protocol-contracts": "5.2.0",
    "@aztec/prover-client": "5.2.0",
    "@aztec/prover-node": "5.2.0",
    "@aztec/pxe": "5.2.0",
    "@aztec/sequencer-client": "5.2.0",
    "@aztec/standard-contracts": "5.2.0",
    "@aztec/stdlib": "5.2.0",
    "@aztec/telemetry-client": "5.2.0",
    "@aztec/txe": "5.2.0",
    "@aztec/validator-ha-signer": "5.2.0",
    "@aztec/wallets": "5.2.0",
    "@aztec/world-state": "5.2.0",
    "@iarna/toml": "^2.2.5",
    "@types/chalk": "^2.2.0",
    "abitype": "^0.8.11",
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "koa": "^2.16.1",
    "koa-router": "^13.1.1",
    "viem": "npm:@aztec/viem@2.38.2",
    "zod": "^4"
  },
  "files": [
    "dest",
    "scripts",
    "src",
    "!*.test.*"
  ],
  "types": "./dest/index.d.ts",
  "devDependencies": {
    "@jest/globals": "^30.0.0",
    "@types/jest": "^30.0.0",
    "@types/koa": "^2.15.0",
    "@typescript/native-preview": "7.0.0-dev.20260113.1",
    "jest": "^30.0.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.3"
  },
  "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"
    ]
  },
  "engines": {
    "node": ">=20.10"
  }
}
