{ "$schema": "https://json.schemastore.org/package.json", "name": "create-discord-bot", "version": "4.1.0", "description": "A simple way to create a startup Discord bot.", "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", "prepack": "pnpm run build && pnpm run lint", "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" }, "type": "module", "bin": "./dist/index.js", "directories": { "bin": "bin", "lib": "src" }, "files": [ "dist", "template" ], "contributors": [ "Crawl ", "SpaceEEC ", "Vlad Frangu ", "Aura Román ", "Jiralite " ], "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": { "@discordjs/api-extractor": "workspace:^", "@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" }, "engines": { "node": ">=22.12.0" }, "publishConfig": { "access": "public", "provenance": true } }