create-discord-bot
Version:
A simple way to create a startup Discord bot.
81 lines • 2.28 kB
JSON
{
"$schema": "https://json.schemastore.org/package.json",
"name": "create-discord-bot",
"version": "4.0.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": "^13.1.0",
"fast-glob": "^3.3.3",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"validate-npm-package-name": "^6.0.0"
},
"devDependencies": {
"@favware/cliff-jumper": "^4.1.0",
"@types/node": "^22.15.2",
"@types/prompts": "^2.4.9",
"@types/validate-npm-package-name": "^4.0.2",
"cross-env": "^7.0.3",
"eslint": "^9.25.1",
"eslint-config-neon": "^0.2.7",
"eslint-formatter-compact": "^8.40.0",
"eslint-formatter-pretty": "^6.0.1",
"prettier": "^3.5.3",
"terser": "^5.39.0",
"tsup": "^8.4.0",
"typescript": "~5.8.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"
}
}