{
  "name": "crypto-xor",
  "type": "module",
  "version": "3.1.0",
  "packageManager": "pnpm@7.30.0",
  "description": "",
  "author": "Thomas Champagne <th.champagne@gmail.com>",
  "license": "MIT",
  "homepage": "https://github.com/thomaschampagne/crypto-xor#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/thomaschampagne/crypto-xor.git"
  },
  "bugs": "https://github.com/thomaschampagne/crypto-xor/issues",
  "keywords": [],
  "sideEffects": false,
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs"
    }
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "*": [
        "./dist/*",
        "./dist/index.d.ts"
      ]
    }
  },
  "files": [
    "dist"
  ],
  "devDependencies": {
    "@types/node": "^18.15.3",
    "@typescript-eslint/eslint-plugin": "^5.55.0",
    "@typescript-eslint/parser": "^5.55.0",
    "bumpp": "^9.0.0",
    "eslint": "^8.36.0",
    "eslint-config-prettier": "^8.7.0",
    "eslint-plugin-prettier": "^4.2.1",
    "esno": "^0.16.3",
    "husky": "^8.0.3",
    "markdown-toc-gen": "^1.0.1",
    "npm-check-updates": "^16.7.13",
    "pnpm": "^7.30.0",
    "prettier": "^2.8.5",
    "typedoc": "^0.23.28",
    "typescript": "^5.0.2",
    "unbuild": "^1.1.2",
    "vite": "^4.2.0",
    "vitest": "^0.29.3"
  },
  "scripts": {
    "build": "unbuild",
    "dev": "unbuild --stub",
    "release": "bumpp --tag %s && pnpm publish",
    "start": "esno src/index.ts",
    "test": "vitest --run",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "readme:toc": "markdown-toc-gen update README.md",
    "docs": "pnpm run readme:toc && typedoc src/index.ts",
    "integrate": "pnpm install && pnpm run typecheck && pnpm run lint:fix && pnpm run test && pnpm run build && pnpm run docs",
    "upgrade:libs": "ncu -u"
  }
}