{
  "name": "@dyoshikawa/tsumiki",
  "private": false,
  "version": "0.0.6",
  "description": "A CLI tool for install tsumiki commands",
  "keywords": [
    "cli",
    "tsumiki",
    "claude",
    "claudecode",
    "ai"
  ],
  "homepage": "https://github.com/classmethod/tsumiki#readme",
  "bugs": {
    "url": "https://github.com/classmethod/tsumiki/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/classmethod/tsumiki.git"
  },
  "license": "MIT",
  "author": {
    "name": "classmethod"
  },
  "type": "module",
  "exports": {
    ".": {
      "types": "./dist/cli.d.ts",
      "import": "./dist/cli.js",
      "require": "./dist/cli.cjs"
    }
  },
  "main": "./dist/cli.cjs",
  "module": "./dist/cli.js",
  "types": "./dist/cli.d.ts",
  "bin": {
    "tsumiki": "./dist/cli.js"
  },
  "files": [
    "dist"
  ],
  "simple-git-hooks": {
    "pre-commit": "pnpm secretlint && pnpm typecheck && pnpm fix"
  },
  "dependencies": {
    "commander": "14.0.0",
    "fs-extra": "11.3.0",
    "ink": "6.1.0",
    "react": "19.1.1"
  },
  "devDependencies": {
    "@biomejs/biome": "2.1.3",
    "@secretlint/secretlint-rule-preset-recommend": "10.2.1",
    "@tsconfig/node24": "24.0.1",
    "@types/fs-extra": "11.0.4",
    "@types/node": "24.1.0",
    "@types/react": "19.1.9",
    "@typescript/native-preview": "7.0.0-dev.20250729.2",
    "secretlint": "10.2.1",
    "simple-git-hooks": "2.13.0",
    "tsup": "8.5.0",
    "tsx": "4.20.3",
    "typescript": "5.8.3"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "scripts": {
    "build": "rm -rf dist && mkdir -p dist/commands && cp ./commands/*.md ./commands/*.sh dist/commands/ 2>/dev/null || true && tsup",
    "build:run": "pnpm build && node dist/cli.js",
    "check": "biome check src",
    "fix": "biome check src --write",
    "secretlint": "secretlint --secretlintignore .gitignore **/*",
    "typecheck": "tsgo --noEmit"
  }
}