{
  "name": "@happyvertical/smrt-secrets",
  "version": "0.42.7",
  "description": "Per-tenant secret management with envelope encryption for SMRT",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "CLAUDE.md",
    "AGENTS.md"
  ],
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./manifest": "./dist/manifest.json",
    "./manifest.json": "./dist/manifest.json",
    "./models": {
      "types": "./dist/models/index.d.ts",
      "import": "./dist/models/index.js"
    },
    "./service": {
      "types": "./dist/services/SecretService.d.ts",
      "import": "./dist/services/SecretService.js"
    }
  },
  "dependencies": {
    "@happyvertical/logger": "^0.88.0",
    "@happyvertical/secrets": "^0.88.0",
    "@happyvertical/sql": "^0.88.0",
    "@happyvertical/utils": "^0.88.0",
    "@happyvertical/smrt-tenancy": "0.42.7",
    "@happyvertical/smrt-core": "0.42.7"
  },
  "devDependencies": {
    "@types/node": "24.13.2",
    "typescript": "5.9.3",
    "vite": "8.1.4",
    "vitest": "4.1.10",
    "@happyvertical/smrt-vitest": "0.42.7"
  },
  "keywords": [
    "smrt",
    "secrets",
    "encryption",
    "envelope-encryption",
    "multi-tenancy",
    "ai"
  ],
  "author": "HappyVertical",
  "license": "MIT",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/happyvertical/smrt.git",
    "directory": "packages/secrets"
  },
  "scripts": {
    "build": "vite build --mode library",
    "build:watch": "vite build --mode library --watch",
    "clean": "rm -rf dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit -p tsconfig.json"
  }
}