{
  "name": "@digicroz/jwt",
  "version": "1.0.6",
  "description": "Production-grade JWT utilities with complete type safety, timing-safe verification, and error handling without throwing. Fully typed, tested, and optimized for modern TypeScript projects.",
  "keywords": [
    "jwt",
    "json-web-token",
    "authentication",
    "authorization",
    "typescript",
    "type-safe",
    "no-errors",
    "result-pattern",
    "timing-safe",
    "security",
    "async",
    "promise",
    "cryptography",
    "token",
    "verification",
    "signing",
    "decoding",
    "hs256",
    "jsonwebtoken",
    "modern-js",
    "typescript-library"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "react-native": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "typings": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "types": [
        "./dist/types/index.d.ts"
      ]
    }
  },
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./types": {
      "types": "./dist/types/index.d.ts",
      "require": "./dist/types/index.cjs",
      "import": "./dist/types/index.js",
      "default": "./dist/types/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/digicroz/js-kit.git"
  },
  "homepage": "https://github.com/digicroz/js-kit#readme",
  "bugs": {
    "url": "https://github.com/digicroz/js-kit/issues"
  },
  "author": {
    "name": "Adarsh Hatkar",
    "url": "https://github.com/AdarshHatkar"
  },
  "license": "MIT",
  "engines": {
    "node": ">=16.0.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "clean": "npx rimraf dist",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:ui": "vitest --ui",
    "test:coverage": "vitest run --coverage",
    "test:coverage:watch": "vitest --coverage",
    "prepublishOnly": "npm run clean  && npm run build",
    "release:patch": "npm version patch",
    "postversion": "git push && git push --tags && npm publish",
    "link": "npm run build && npm link",
    "unlink": "npm unlink -g @digicroz/js-kit"
  },
  "dependencies": {
    "@digicroz/js-kit": "^1.0.14",
    "jsonwebtoken": "^9.0.3"
  },
  "devDependencies": {
    "@types/jsonwebtoken": "^9.0.10",
    "@types/node": "^24.3.0",
    "@vitest/coverage-v8": "^4.0.16",
    "@vitest/ui": "^4.0.16",
    "tsup": "^8.5.1",
    "typescript": "^5.4.0",
    "vitest": "^4.0.16"
  }
}
