{
  "name": "@ajna-inc/vaults",
  "version": "0.5.0",
  "description": "Spec-conformant didcomm.org/vaults/1.0 client for Credo-TS — JWE + ZCAP-LD + EDV",
  "license": "Apache-2.0",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "exports": {
    ".": {
      "react-native": {
        "types": "./build/index.native.d.ts",
        "default": "./build/index.native.js"
      },
      "types": "./build/index.d.ts",
      "default": "./build/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "build",
    "wasm"
  ],
  "dependencies": {
    "@hpke/core": "^1.7.4",
    "@noble/ciphers": "^1.3.0",
    "@noble/curves": "^1.9.0",
    "@noble/hashes": "^1.3.3",
    "@noble/post-quantum": "^0.4.1",
    "class-transformer": "^0.5.1",
    "class-validator": "^0.14.0",
    "hash-wasm": "^4.11.0",
    "@credo-ts/core": "0.5.17"
  },
  "optionalDependencies": {
    "@aws-sdk/client-s3": "^3.400.0",
    "@aws-sdk/s3-request-presigner": "^3.400.0",
    "react-native-argon2": "^2.0.0"
  },
  "peerDependenciesMeta": {
    "react-native-argon2": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/jest": "^29.5.0",
    "@types/node": "^18.0.0",
    "jest": "^29.5.0",
    "rimraf": "^4.4.0",
    "ts-jest": "^29.1.0",
    "typescript": "~5.3.0"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ajna-inc/credo-ts",
    "directory": "packages/vaults"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "pnpm run clean && pnpm run compile",
    "clean": "rimraf ./build",
    "compile": "tsc -p tsconfig.build.json",
    "test": "jest",
    "test:watch": "jest --watch",
    "build:wasm": "cd ../../../rust/wasm/vault-crypto && wasm-pack build --target nodejs --out-dir ../../../credo-ts/packages/vaults/wasm"
  }
}