{
  "name": "@aztec/key-store",
  "version": "5.2.0",
  "type": "module",
  "exports": "./dest/index.js",
  "typedocOptions": {
    "entryPoints": [
      "./src/index.ts"
    ],
    "name": "KeyStore",
    "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}"
  },
  "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/kv-store": "5.2.0",
    "@aztec/stdlib": "5.2.0",
    "tslib": "^2.4.0"
  },
  "devDependencies": {
    "@jest/globals": "^30.0.0",
    "@types/jest": "^30.0.0",
    "@types/node": "^22.15.17",
    "@typescript/native-preview": "7.0.0-dev.20260113.1",
    "jest": "^30.0.0",
    "ts-node": "^10.9.1",
    "typescript": "^5.3.3"
  },
  "files": [
    "dest",
    "src",
    "!*.test.*"
  ],
  "types": "./dest/index.d.ts",
  "engines": {
    "node": ">=20.10"
  }
}
