{
  "name": "@systemix/token",
  "version": "1.4.0",
  "publishConfig": {
    "access": "public"
  },
  "private": false,
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./token": {
      "types": "./dist/token/index.d.ts",
      "import": "./dist/token/index.js",
      "require": "./dist/token/index.cjs"
    },
    "./signed": {
      "types": "./dist/signed/index.d.ts",
      "import": "./dist/signed/index.js",
      "require": "./dist/signed/index.cjs"
    },
    "./common": {
      "types": "./dist/common/index.d.ts",
      "import": "./dist/common/index.js",
      "require": "./dist/common/index.cjs"
    },
    "./rsa": {
      "types": "./dist/rsa/index.d.ts",
      "import": "./dist/rsa/index.js",
      "require": "./dist/rsa/index.cjs"
    }
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/shahadathhs/systemix.git",
    "directory": "packages/token"
  },
  "homepage": "https://github.com/shahadathhs/systemix/tree/main/packages/token#readme",
  "keywords": [
    "systemix",
    "token",
    "generator",
    "secure-token",
    "api-key",
    "session-token",
    "signed-token",
    "auth",
    "hmac",
    "rsa",
    "crypto",
    "typescript",
    "node",
    "utility"
  ],
  "author": "Shahadath Hossen Sajib <shahadathhossensajib732@gmail.com> (https://github.com/shahadathhs)",
  "license": "MIT",
  "description": "A cryptographically secure token generator and signed-token module for API keys, session tokens, and auth. Zero dependencies, pure Node.js.",
  "devDependencies": {
    "@types/node": "^25.3.5",
    "eslint": "^10.0.3",
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "@systemix/eslint": "0.5.0",
    "@systemix/runner": "0.3.0",
    "@systemix/typescript": "0.5.0"
  },
  "directories": {
    "test": "tests"
  },
  "sideEffects": [
    "*.css",
    "*.scss"
  ],
  "bugs": {
    "url": "https://github.com/shahadathhs/systemix/issues"
  },
  "files": [
    "dist",
    "README.md",
    "package.json"
  ],
  "browser": {
    "node:crypto": false
  },
  "scripts": {
    "build": "tsup",
    "test": "pnpm build && node tests/run.mjs",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "format": "prettier --check . --ignore-path .prettierignore",
    "format:fix": "prettier --write . --ignore-path .prettierignore",
    "clean": "rimraf dist node_modules",
    "clean:turbo": "rimraf .turbo dist node_modules"
  }
}