{
  "name": "doton",
  "version": "0.1.8",
  "description": "CLI tool to initialize development configurations for Cursor IDE and more",
  "main": "dist/index.js",
  "bin": {
    "doton": "./dist/index.js"
  },
  "files": [
    "dist",
    ".cursor",
    ".vscode",
    "README.md",
    "README.ko.md",
    "LICENSE"
  ],
  "keywords": [
    "config",
    "init",
    "development",
    "setup",
    "cli",
    "cursor",
    "ide",
    "cursor-ide",
    "dev-tools",
    "productivity",
    "tooling",
    "configuration",
    "boilerplate",
    "template",
    "starter",
    "i18n"
  ],
  "author": {
    "name": "Kim Hyun-woo",
    "email": "khw1031@gmail.com",
    "url": "https://github.com/khw1031"
  },
  "license": "MIT",
  "homepage": "https://github.com/khw1031/doton#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/khw1031/doton.git"
  },
  "bugs": {
    "url": "https://github.com/khw1031/doton/issues"
  },
  "dependencies": {
    "chalk": "^5.3.0",
    "fs-extra": "^11.2.0",
    "inquirer": "^9.2.12",
    "ora": "^8.0.1"
  },
  "devDependencies": {
    "@commitlint/cli": "^19.8.0",
    "@commitlint/config-conventional": "^19.8.0",
    "@eslint/eslintrc": "^3.2.0",
    "@eslint/js": "^9.3.0",
    "@stylistic/eslint-plugin": "^1.7.0",
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.11.25",
    "doton": "^0.1.3",
    "eslint": "^9.2.0",
    "globals": "^15.1.0",
    "husky": "^9.1.7",
    "standard-version": "^9.5.0",
    "tsup": "^8.0.2",
    "typescript": "^5.4.2",
    "typescript-eslint": "^7.8.0",
    "vitest": "^1.3.1"
  },
  "engines": {
    "node": ">=18.0.0",
    "pnpm": ">=10.0.0"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "lint": "eslint . --fix",
    "lint:check": "eslint .",
    "postinstall": "[ -f pnpm-lock.yaml ] || echo 'Please use pnpm for this project: https://pnpm.io/installation'",
    "release": "standard-version",
    "release:minor": "standard-version --release-as minor",
    "release:major": "standard-version --release-as major",
    "release:patch": "standard-version --release-as patch",
    "release:dry": "standard-version --dry-run"
  }
}