{
  "name": "dominion-protocol",
  "version": "1.1.1",
  "description": "Epoch-based encrypted access control protocol for Nostr",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    },
    "./nostr": {
      "import": "./dist/nostr/index.js",
      "types": "./dist/nostr/index.d.ts"
    }
  },
  "files": [
    "dist/",
    "LICENSE",
    "llms.txt"
  ],
  "scripts": {
    "build": "tsc",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist",
    "lint": "biome check src/ tests/",
    "lint:fix": "biome check --write src/ tests/",
    "prepare": "npm run build"
  },
  "keywords": [
    "nostr",
    "nostr-protocol",
    "encryption",
    "access-control",
    "epoch",
    "aes-256-gcm",
    "hkdf",
    "shamir",
    "secret-sharing",
    "tiered-access",
    "content-keys",
    "key-rotation",
    "vault",
    "nip-44",
    "private-content",
    "dominion"
  ],
  "sideEffects": false,
  "author": "ForgeSworn (https://github.com/forgesworn)",
  "contributors": [
    "TheCryptoDonkey (https://github.com/TheCryptoDonkey)",
    "decented (https://github.com/decented)"
  ],
  "license": "MIT",
  "engines": {
    "node": ">=18"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/forgesworn/dominion.git"
  },
  "homepage": "https://github.com/forgesworn/dominion",
  "bugs": {
    "url": "https://github.com/forgesworn/dominion/issues"
  },
  "dependencies": {
    "@forgesworn/shamir-core": "^1.0.0",
    "@noble/ciphers": "^2.1.0",
    "@noble/hashes": "^2.0.1"
  },
  "devDependencies": {
    "@biomejs/biome": "^2.4.9",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@semantic-release/github": "^12.0.6",
    "@semantic-release/npm": "^13.1.5",
    "@types/node": "^25.3.3",
    "semantic-release": "^25.0.0",
    "signet-protocol": "^1.1.0",
    "typescript": "^5.7.0",
    "vitest": "^4.1.0"
  },
  "funding": {
    "type": "lightning",
    "url": "lightning:thedonkey@strike.me"
  }
}
