{
  "name": "discgen-cli",
  "version": "2.0.0",
  "description": "Scaffold a production-ready Discord Bot in seconds.",
  "bin": {
    "discgen-cli": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "scripts": {
    "dev": "tsx src/index.ts",
    "build": "tsup src/index.ts --format esm,cjs",
    "test": "vitest",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src",
    "format": "prettier --write src",
    "prepublishOnly": "npm run typecheck && npm run build && npm run test -- --run"
  },
  "keywords": [
    "discord",
    "discord-bot",
    "discord.js",
    "bot",
    "scaffolding",
    "scaffold",
    "cli",
    "generator",
    "create",
    "template",
    "boilerplate",
    "typescript",
    "slash-commands",
    "interactions"
  ],
  "author": {
    "name": "xsaitox",
    "url": "https://xsaitox.dev"
  },
  "license": "MIT",
  "homepage": "https://github.com/XSaitoKungX/discgen-cli#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/XSaitoKungX/discgen-cli.git"
  },
  "bugs": {
    "url": "https://github.com/XSaitoKungX/discgen-cli/issues"
  },
  "engines": {
    "node": ">=24"
  },
  "dependencies": {
    "@clack/prompts": "^1.5.0",
    "commander": "^15.0.0"
  },
  "devDependencies": {
    "@types/node": "^24.12.4",
    "@typescript-eslint/eslint-plugin": "^8.60.1",
    "@typescript-eslint/parser": "^8.60.1",
    "eslint": "^10.4.1",
    "prettier": "^3.8.3",
    "tsup": "^8.5.1",
    "tsx": "^4.22.4",
    "typescript": "^6.0.3",
    "vitest": "^4.1.8"
  }
}
