{
  "name": "vibedraft-cli",
  "version": "1.2.1",
  "description": "VibeDraft CLI - Setup tool for VibeDraft spec-driven development projects",
  "main": "index.js",
  "type": "module",
  "bin": {
    "vibedraft": "./index.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/MantisWare/VibeDraft.git"
  },
  "homepage": "https://github.com/MantisWare/VibeDraft#readme",
  "bugs": {
    "url": "https://github.com/MantisWare/VibeDraft/issues"
  },
  "scripts": {
    "test": "node --test test/*.test.js",
    "test:cli": "node --test test/cli.test.js",
    "test:analyzers": "node --test test/analyzers.test.js",
    "test:verbose": "node --test --test-reporter=spec test/*.test.js",
    "test:coverage": "node --test --experimental-test-coverage test/*.test.js",
    "lint": "eslint . --fix",
    "lint:check": "eslint .",
    "clean": "rm -rf test-tmp node_modules/.cache .genreleases",
    "prepare": "echo 'VibeDraft CLI ready for development'",
    "prepack": "npm run clean",
    "prepublishOnly": "npm run lint:check && npm test",
    "preversion": "npm run lint:check",
    "version": "npm run lint && git add -A",
    "postversion": "git push && git push --tags",
    "build:releases": "node scripts/create-release-packages.js",
    "release:github": "node scripts/create-github-release.js",
    "release:github:draft": "node scripts/create-github-release.js --draft",
    "release:patch": "npm version patch -m 'Release v%s'",
    "release:minor": "npm version minor -m 'Release v%s'",
    "release:major": "npm version major -m 'Release v%s'",
    "publish:npm": "npm publish",
    "release": "npm run release:patch && npm run publish:npm",
    "release:full": "npm run release && npm run build:releases && npm run release:github"
  },
  "keywords": [
    "cli",
    "spec-driven",
    "development",
    "ai-assistant"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "adm-zip": "^0.5.10",
    "boxen": "^7.1.1",
    "chalk": "^5.3.0",
    "cli-progress": "^3.12.0",
    "cli-table3": "^0.6.3",
    "commander": "^11.1.0",
    "fs-extra": "^11.2.0",
    "inquirer": "^9.2.12",
    "node-fetch": "^3.3.2",
    "ora": "^7.0.1",
    "simple-git": "^3.21.0",
    "strip-ansi": "^7.1.0"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.37.0",
    "eslint": "^9.37.0",
    "globals": "^16.4.0"
  }
}
