{
  "name": "@substrate-system/webcrypto-x3dh",
  "version": "0.4.17",
  "files": [
    "./dist/*"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./*": {
      "import": "./dist/*.js",
      "require": "./dist/*.cjs"
    }
  },
  "scripts": {
    "lint": "eslint \"./**/*.{ts,js}\"",
    "build": "mkdir -p ./dist && rm -rf ./dist/* && npm run build-esm && npm run build-esm:min",
    "build-esm": "esbuild src/*.ts --platform=neutral --format=esm --metafile=dist/meta.json --keep-names --tsconfig=tsconfig.build.json --outdir=./dist --sourcemap && tsc --emitDeclarationOnly --project tsconfig.build.json --outDir dist",
    "build-esm:min": "esbuild ./src/*.ts --platform=neutral --keep-names --bundle --tsconfig=tsconfig.build.json --minify --out-extension:.js=.min.js --outdir=./dist --sourcemap --external:crypto --external:tweetnacl",
    "toc": "markdown-toc --maxdepth 3 -i README.md",
    "test": "npm run test:node && npm run test:browser",
    "test:node": "esbuild --platform=neutral --bundle ./test/index.ts --external:crypto --external:tweetnacl | node",
    "test:browser": "esbuild --bundle ./test/index.ts | tapout",
    "build-docs": "typedoc ./src/*.ts",
    "changelog": "auto-changelog -p --template keepachangelog --breaking-pattern 'BREAKING CHANGE:'",
    "preversion": "npm run lint",
    "version": "npm run toc && npm run changelog && git add CHANGELOG.md README.md",
    "postversion": "git push --follow-tags && npm publish",
    "prepublishOnly": "npm run build"
  },
  "repository": "github:substrate-system/webcrypto-x3dh",
  "keywords": [
    "X3DH",
    "Key agreement",
    "cryptography",
    "Diffie-Hellman"
  ],
  "dependencies": {
    "@substrate-system/one-webcrypto": "^1.1.3"
  },
  "devDependencies": {
    "@substrate-system/debug": "^0.9.23",
    "@substrate-system/keys": "^0.2.17",
    "@substrate-system/tapout": "^0.0.20",
    "@substrate-system/tapzero": "^0.10.15",
    "@typescript-eslint/eslint-plugin": "^8.8.1",
    "@typescript-eslint/parser": "^8.8.1",
    "auto-changelog": "^2.5.0",
    "esbuild": "^0.25.9",
    "eslint": "^8.57.1",
    "eslint-config-standard": "^17.1.0",
    "markdown-toc": "^1.2.0",
    "tap-spec": "^5.0.0",
    "typedoc": "^0.28.12",
    "typescript": "^5.9.2",
    "uint8arrays": "^5.1.0"
  },
  "contributors": [
    "nichoth <nichoth@nichoth.com> (https://nichoth.com)"
  ],
  "license": "SEE LICENSE IN LICENSE"
}
