{
  "name": "multibyte",
  "version": "1.0.7",
  "description": "Unicode-aware string functions",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs"
    }
  },
  "sideEffects": false,
  "files": ["dist", "README.md", "LICENSE.md"],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kensnyder/multibyte.git"
  },
  "keywords": [
    "multibyte",
    "unicode",
    "utf8",
    "utf-8",
    "utf-16",
    "utf16",
    "multibyte safe",
    "multibyte-safe",
    "unicode aware",
    "unicode-aware",
    "emoji",
    "emoji-safe"
  ],
  "scripts": {
    "lint": "biome check",
    "format": "biome format --write",
    "test": "bun test ./tests/",
    "test-watch": "bun test --watch ./tests/",
    "build": "bun run build:clean && bun run build:dts && bun run build:esm && bun run build:cjs",
    "build:clean": "rm -rf dist/ && mkdir dist",
    "build:dts": "yes | bunx dts-bundle-generator --project tsconfig.bundle-generator.json -o dist/index.d.ts ./index.ts",
    "build:esm": "bun build ./index.ts --bundle --minify --platform=node --format=esm --outfile=dist/index.mjs",
    "build:cjs": "bun build ./index.ts --bundle --minify --platform=node --format=cjs --outfile=dist/index.cjs",
    "coverage": "bun test --coverage --coverage-reporter=lcov ./tests/",
    "view-coverage": "open ./coverage/index.html"
  },
  "author": "Ken Snyder <kendsnyder@gmail.com>",
  "license": "ISC",
  "devDependencies": {
    "@biomejs/biome": "2.4.9",
    "bun-types": "1.3.11",
    "mitata": "1.0.34",
    "typescript": "6.0.2"
  }
}
