{
  "name": "string-ts",
  "version": "2.3.1",
  "description": "Strongly-typed string functions.",
  "author": "Gustavo Guichard <@gugaguichard>",
  "license": "MIT",
  "scripts": {
    "build": "tsup ./src/index.ts --format esm,cjs --dts --treeshake && tsx scripts/generate-entrypoints.mts",
    "dev": "tsup ./src/index.ts --format esm,cjs --watch --dts",
    "lint": "node_modules/.bin/biome check --write --error-on-warnings",
    "tsc": "tsc --noEmit",
    "tsc:dist": "tsc --project tsconfig.dist.json",
    "test": "vitest run"
  },
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.js",
      "default": "./dist/index.mjs",
      "types": "./dist/index.d.ts"
    },
    "./native": {
      "default": "./dist/native.js",
      "types": "./dist/native.d.ts"
    }
  },
  "main": "./dist/index.js",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "native": [
        "dist/native.d.ts"
      ]
    }
  },
  "devDependencies": {
    "@biomejs/biome": "^2.3.8",
    "@types/node": "^20.0.0",
    "@vitest/coverage-v8": "^4.0.14",
    "tsup": "latest",
    "tsx": "^4.20.6",
    "typescript": "^5.9.3",
    "vitest": "latest"
  },
  "files": [
    "README.md",
    "./dist/*"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/gustavoguichard/string-ts.git"
  },
  "bugs": {
    "url": "https://github.com/gustavoguichard/string-ts/issues"
  },
  "sideEffects": false,
  "pnpm": {
    "onlyBuiltDependencies": [
      "@biomejs/biome",
      "esbuild"
    ],
    "overrides": {
      "vite": "^6.0.0"
    }
  },
  "packageManager": "pnpm@10.12.4+sha512.5ea8b0deed94ed68691c9bad4c955492705c5eeb8a87ef86bc62c74a26b037b08ff9570f108b2e4dbd1dd1a9186fea925e527f141c648e85af45631074680184"
}
