{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "iron-webcrypto",
  "version": "0.10.1",
  "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": "./dist/index.js",
    "require": "./dist/index.cjs"
  },
  "main": "dist/index.cjs",
  "files": [
    "dist/*"
  ],
  "scripts": {
    "build": "pnpm i && tsup",
    "lint": "pnpm build && pnpm lint:only",
    "lint:only": "lefthook run pre-commit && publint && attw --pack",
    "test": "pnpm test:node && pnpm test:deno && pnpm test:bun",
    "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": {
    "@arethetypeswrong/cli": "^0.9.0",
    "@commitlint/cli": "^17.7.1",
    "@commitlint/config-conventional": "^17.7.0",
    "@release-it/conventional-changelog": "^7.0.0",
    "@smithy/util-base64": "^2.0.0",
    "@types/node": "^20.5.7",
    "@typescript-eslint/eslint-plugin": "^6.5.0",
    "@typescript-eslint/parser": "^6.5.0",
    "bun-types": "^0.8.1",
    "eslint": "^8.48.0",
    "eslint-config-airbnb-base": "^15.0.0",
    "eslint-config-airbnb-typescript": "^17.1.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-import-resolver-node": "^0.3.9",
    "eslint-import-resolver-typescript": "^3.6.0",
    "eslint-plugin-import": "^2.28.1",
    "eslint-plugin-prettier": "^5.0.0",
    "eslint-plugin-security": "^1.7.1",
    "lefthook": "^1.4.9",
    "prettier": "^3.0.3",
    "prettier-plugin-packagejson": "^2.4.5",
    "publint": "^0.2.2",
    "release-it": "^16.1.5",
    "replace": "^1.2.2",
    "test": "^3.3.0",
    "tsup": "^7.2.0",
    "tsx": "^3.12.8",
    "typescript": "^5.2.2"
  },
  "packageManager": "pnpm@8.7.1",
  "runkitExampleFilename": "dist/example.js"
}
