{
  "name": "base62str",
  "version": "2.0.0",
  "description": "Encode a string into a base62 string.  Decode a base62 string back to a decoded string. It can also code arrays of bytes.",
  "keywords": ["base62", "base-62", "encoding", "decoding", "url-encoding"],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "unpkg": "dist/index.global.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.mjs",
      "require": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "postbuild": "node scripts/patch-cjs-default.mjs",
    "test": "npm run build && vitest run",
    "test:watch": "vitest",
    "demo:dev": "vite",
    "demo:build": "vite build",
    "prepublishOnly": "npm run test"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/felipecarrillo100/base62str"
  },
  "author": "Felipe Carrillo",
  "license": "MIT",
  "devDependencies": {
    "@types/react": "^19.2.18",
    "@types/react-dom": "^19.2.4",
    "@vitejs/plugin-react": "^6.0.5",
    "react": "^19.2.8",
    "react-dom": "^19.2.8",
    "tsup": "^8.5.1",
    "typescript": "^5.5.4",
    "vite": "^8.2.1",
    "vitest": "^4.1.10"
  }
}
