{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "iron-webcrypto",
  "version": "0.6.0",
  "description": "a cryptographic utility for sealing-unsealing a JSON object using symmetric key encryption with message integrity verification",
  "keywords": [
    "authentication",
    "data integrity",
    "encryption",
    "webcrypto"
  ],
  "bugs": {
    "url": "https://github.com/brc-dd/iron-webcrypto",
    "email": "brc-dd@hotmail.com"
  },
  "repository": "github:brc-dd/iron-webcrypto",
  "funding": "https://github.com/sponsors/brc-dd",
  "license": "MIT",
  "author": "Divyansh Singh <brc-dd@hotmail.com> (https://github.com/brc-dd)",
  "sideEffects": false,
  "type": "module",
  "exports": {
    "import": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "require": {
      "types": "./dist/index.d.cts",
      "default": "./dist/index.cjs"
    }
  },
  "main": "./dist/index.cjs",
  "files": [
    "dist/*"
  ],
  "scripts": {
    "build": "pnpm i && tsup && cp dist/index.d.ts dist/index.d.cts",
    "lint": "pnpm build && pnpm lint:only",
    "lint:only": "lefthook run pre-commit && publint",
    "prerelease": "pnpm lint && pnpm test:node",
    "release": "pnpm prerelease && release-it",
    "test:bun": "bun --cwd=tests/bun test",
    "test:deno": "deno test tests/deno/index.test.ts --parallel --no-check",
    "test:node": "NODE_OPTIONS='--loader tsx' node--test tests/node/index.test.ts"
  },
  "devDependencies": {
    "@aws-sdk/util-base64": "^3.208.0",
    "@commitlint/cli": "^17.4.4",
    "@commitlint/config-conventional": "^17.4.4",
    "@peculiar/webcrypto": "^1.4.1",
    "@release-it/conventional-changelog": "^5.1.1",
    "@types/node": "^18.15.3",
    "@types/semver": "^7.3.13",
    "@typescript-eslint/eslint-plugin": "^5.55.0",
    "@typescript-eslint/parser": "^5.55.0",
    "bun-types": "^0.5.7",
    "eslint": "^8.36.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-airbnb-typescript": "^17.0.0",
    "eslint-config-prettier": "^8.7.0",
    "eslint-import-resolver-node": "^0.3.7",
    "eslint-import-resolver-typescript": "^3.5.3",
    "eslint-plugin-import": "^2.27.5",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-security": "^1.7.1",
    "lefthook": "^1.3.3",
    "prettier": "^2.8.4",
    "prettier-plugin-packagejson": "^2.4.3",
    "publint": "^0.1.10",
    "release-it": "^15.8.0",
    "replace": "^1.2.2",
    "semver": "^7.3.8",
    "test": "^3.3.0",
    "tsup": "^6.6.3",
    "tsx": "^3.12.5",
    "typescript": "^4.9.5"
  },
  "packageManager": "pnpm@7.29.2",
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  }
}
