{
  "name": "sframe-ratchet",
  "version": "0.5.8",
  "type": "module",
  "description": "RFC 9605 SFrame AEAD with epoch ratchet for browser group E2EE",
  "keywords": [
    "webrtc",
    "e2ee",
    "sframe",
    "rfc-9605",
    "ratchet",
    "encryption",
    "webcrypto",
    "x25519"
  ],
  "author": "Anatolii Koptev",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/anatolykoptev/sframe-ratchet.git"
  },
  "homepage": "https://github.com/anatolykoptev/sframe-ratchet#readme",
  "bugs": {
    "url": "https://github.com/anatolykoptev/sframe-ratchet/issues"
  },
  "engines": {
    "node": ">=20"
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./worker": {
      "import": "./dist/worker.js",
      "types": "./dist/worker.d.ts"
    },
    "./kex-simple": {
      "import": "./dist/kex-simple.js",
      "types": "./dist/kex-simple.d.ts"
    },
    "./chat": {
      "import": "./dist/chat/index.js",
      "types": "./dist/chat/index.d.ts"
    },
    "./chat/mls": {
      "import": "./dist/chat/mls.js",
      "types": "./dist/chat/mls.d.ts"
    },
    "./mls": {
      "import": "./dist/mls/index.js",
      "types": "./dist/mls/index.d.ts"
    }
  },
  "files": [
    "dist",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsup",
    "prepublishOnly": "npm run build",
    "test": "vitest run",
    "mutation": "stryker run",
    "typecheck": "tsc --noEmit",
    "prepare": "npm run build"
  },
  "peerDependencies": {
    "@noble/curves": "^2.2.0",
    "@noble/hashes": "^2.2.0",
    "ts-mls": "^2.0.0-rc.16"
  },
  "peerDependenciesMeta": {
    "ts-mls": {
      "optional": true
    }
  },
  "devDependencies": {
    "@noble/ciphers": "^2.1.1",
    "@noble/curves": "^2.0.1",
    "@noble/hashes": "^2.0.1",
    "@noble/post-quantum": "^0.6.1",
    "@stryker-mutator/core": "^9.6.1",
    "@stryker-mutator/vitest-runner": "^9.6.1",
    "fake-indexeddb": "^6.2.5",
    "fast-check": "^4.9.0",
    "ts-mls": "^2.0.0-rc.16",
    "tsup": "^8.0.0",
    "typescript": "^5.4.0",
    "vitest": "^2.0.0"
  }
}
