{
  "name": "@imhonglu/pattern-builder",
  "version": "1.0.5",
  "description": "Type-safe regular expression pattern builder for TypeScript with fluent API",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/imhonglu/new-wheels.git",
    "directory": "libs/pattern-builder"
  },
  "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",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "typescript",
    "type-safe",
    "regex",
    "builder",
    "regex-builder"
  ],
  "author": "imhonglu <anonymouser.unknown@gmail.com>",
  "license": "MIT",
  "devDependencies": {
    "@imhonglu/build-tools": "^1.0.6",
    "@imhonglu/configs": "^1.0.9"
  },
  "scripts": {
    "test": "vitest",
    "build": "tsc -p tsconfig.build.json",
    "postbuild": "esm-to-cjs",
    "generate-docs": "pnpm api-extractor run && pnpm api-documenter markdown -i ./temp -o ./docs"
  }
}