{
  "name": "better-cipher",
  "version": "0.1.0-beta.1",
  "description": "A secure encryption library with browser and Node.js support using AES-GCM",
  "homepage": "https://github.com/siddharthborderwala/better-cipher#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/siddharthborderwala/better-cipher.git"
  },
  "bugs": {
    "url": "https://github.com/siddharthborderwala/better-cipher/issues"
  },
  "keywords": [
    "encryption",
    "cipher",
    "aes-gcm",
    "crypto",
    "web-crypto",
    "node-crypto",
    "browser",
    "node",
    "typescript",
    "secure"
  ],
  "author": "Siddharth Borderwala",
  "license": "MIT",
  "source": "src/index.ts",
  "main": "./dist/node/index.js",
  "module": "./dist/node/index.mjs",
  "types": "./dist/node/index.d.ts",
  "unpkg": "./dist/browser/index.mjs",
  "exports": {
    ".": {
      "types": "./dist/node/index.d.ts",
      "node": {
        "import": "./dist/node/index.mjs",
        "require": "./dist/node/index.js"
      },
      "browser": "./dist/browser/index.mjs",
      "default": "./dist/node/index.mjs"
    }
  },
  "devDependencies": {
    "happy-dom": "17.4.4",
    "tsup": "8.4.0",
    "typescript": "latest",
    "vitest": "3.0.8"
  },
  "dependencies": {
    "@types/node": "22.13.11"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "build": "tsup",
    "test": "vitest"
  }
}