{
  "name": "@hbmartin/create-ts-lib",
  "version": "2.0.0",
  "description": "Opinionated TypeScript library scaffolder.",
  "keywords": [
    "create",
    "library",
    "scaffold",
    "typescript"
  ],
  "homepage": "https://github.com/hbmartin/create-ts-lib#readme",
  "bugs": {
    "url": "https://github.com/hbmartin/create-ts-lib/issues"
  },
  "license": "Apache-2.0",
  "author": "Harold Martin",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/hbmartin/create-ts-lib.git"
  },
  "bin": {
    "create-ts-lib": "dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "exports": {
    ".": "./dist/index.js"
  },
  "scripts": {
    "build": "node scripts/build.mjs",
    "check": "pnpm run lint && pnpm run typecheck && pnpm run deps:lint && pnpm run security:lint && pnpm run test:coverage",
    "deps:lint": "fallow dead-code",
    "format": "oxfmt . --write",
    "lint": "biome check --error-on-warnings . && oxlint --deny-warnings . && oxfmt --check .",
    "prepack": "pnpm run build",
    "prepublishOnly": "pnpm run check && pnpm run build && pnpm run verify:artifacts && pnpm run publint && pnpm run types:lint",
    "prepare": "lefthook install",
    "publint": "publint --pack pnpm",
    "release:check": "pnpm run prepublishOnly && pnpm run verify:package",
    "security:lint": "node scripts/security-lint.mjs",
    "smoke:scaffold": "pnpm run build && node scripts/smoke-test-scaffold.mjs",
    "size:report": "npm pack --dry-run --json",
    "attw": "attw",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc -p tsconfig.typecheck.json --noEmit",
    "types:lint": "attw --pack . --profile esm-only",
    "verify:artifacts": "node scripts/verify-artifacts.mjs",
    "verify:package": "npm publish --dry-run --ignore-scripts"
  },
  "dependencies": {
    "@inquirer/prompts": "^8.5.2",
    "ora": "^9.4.1",
    "yoctocolors": "^2.2.0",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@arethetypeswrong/cli": "^0.18.5",
    "@biomejs/biome": "^2.5.7",
    "@sindresorhus/tsconfig": "^8.1.0",
    "@types/node": "^24.13.3",
    "@vitest/coverage-v8": "^4.1.10",
    "fallow": "^3.14.0",
    "jsonc-parser": "^3.3.1",
    "lefthook": "^2.1.10",
    "oxfmt": "^0.62.0",
    "oxlint": "^1.77.0",
    "publint": "^0.3.23",
    "typescript": "^7.0.2",
    "vitest": "^4.1.10"
  },
  "engines": {
    "node": ">=24"
  },
  "packageManager": "pnpm@11.5.2"
}
