{
  "$schema": "https://json.schemastore.org/package.json",
  "name": "create-discord-app",
  "version": "4.1.0",
  "description": "A simple way to create a startup Discord bot.",
  "type": "module",
  "bin": "./dist/index.js",
  "directories": {
    "bin": "bin",
    "lib": "src"
  },
  "files": [
    "dist",
    "template"
  ],
  "contributors": [
    "Crawl <icrawltogo@gmail.com>",
    "SpaceEEC <spaceeec@yahoo.com>",
    "Vlad Frangu <me@vladfrangu.dev>",
    "Aura Román <kyradiscord@gmail.com>",
    "Jiralite <me@jiralite.dev>"
  ],
  "license": "Apache-2.0",
  "keywords": [
    "discord",
    "discord-api",
    "discord.js",
    "create-bot",
    "init-bot",
    "init-discord",
    "boilerplate"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/discordjs/discord.js.git",
    "directory": "packages/create-discord-bot"
  },
  "bugs": {
    "url": "https://github.com/discordjs/discord.js/issues"
  },
  "homepage": "https://discord.js.org",
  "funding": "https://github.com/discordjs/discord.js?sponsor",
  "dependencies": {
    "commander": "^14.0.1",
    "prompts": "^2.4.2",
    "validate-npm-package-name": "^6.0.2"
  },
  "devDependencies": {
    "@favware/cliff-jumper": "^4.1.0",
    "@types/node": "^22.18.8",
    "@types/prompts": "^2.4.9",
    "@types/validate-npm-package-name": "^4.0.2",
    "cross-env": "^10.1.0",
    "eslint": "^9.37.0",
    "eslint-config-neon": "^0.2.7",
    "eslint-formatter-compact": "^8.40.0",
    "eslint-formatter-pretty": "^7.0.0",
    "prettier": "^3.6.2",
    "terser": "^5.44.0",
    "tsup": "^8.5.0",
    "typescript": "~5.9.3",
    "@discordjs/api-extractor": "^7.52.7"
  },
  "engines": {
    "node": ">=22.12.0"
  },
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "scripts": {
    "build": "tsc --noEmit && tsup",
    "lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src",
    "format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src",
    "changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/create-discord-bot/*'",
    "release": "cliff-jumper",
    "rename-to-app": "node scripts/rename-to-app.mjs"
  }
}