mirror of
https://github.com/discordjs/discord.js.git
synced 2026-03-09 16:13:31 +01:00
* feat: basic initialisation * fix: no scope * chore: add options for issues * feat: good word, Monbrey * feat: basic README.md * fix: no documentation for this * feat: install for them * chore: update licencing * chore: fix year * fix: build tsup * feat: add TypeScript option * feat: add `name` option * chore: ignore annoying errors * chore: add tsconfig.json * refactor: remove name We can just use the name of the directory instead. * chore: update cliff jumper rc * chore: bump dependencies * chore: bump dependencies * fix: build in prepack * fix: configure ESLint correctly * feat: infer package manager * docs(packageManager): document `install()` * fix(packageManager): do not emit a warning for `npm` * refactor: change project name colour to yellow * docs(constants): basic documentation * feat: add link * chore: add `verbatimModuleSyntax` * chore: bump discord.js * refactor: switch to @sapphire/ts-config * refactor: file name changes * refactor: tweak description * chore: update yarn.lock * fix: add .env * chore: bump dependencies * feat: event handler * refactor: use `default` * refactor: simpler event * chore: bump discord.js * fix: add release script and reorder * style: reorder package.json * chore: remove unneeded ignores * chore: bump minimum Node.js version * chore: add @types/node to TypeScript package.json * chore: apply requested changes Co-authored-by: Noel <buechler.noel@outlook.com> * style: run ESLint + Prettier * refactor: prefer "the" * refactor: remove some comments * feat: add ESLint + Prettier * chore: requested changes Co-authored-by: Noel <buechler.noel@outlook.com> * chore: more requested changes Co-authored-by: Noel <buechler.noel@outlook.com> --------- Co-authored-by: Noel <buechler.noel@outlook.com>
73 lines
1.8 KiB
JSON
73 lines
1.8 KiB
JSON
{
|
|
"name": "create-discord-bot",
|
|
"version": "0.1.0",
|
|
"description": "A simple way to create a startup Discord bot.",
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"lint": "prettier --check . && cross-env TIMING=1 eslint src --ext .mjs,.js,.ts --format=pretty",
|
|
"format": "prettier --write . && cross-env TIMING=1 eslint src --ext .mjs,.js,.ts --fix --format=pretty",
|
|
"prepack": "yarn build && yarn lint",
|
|
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/create-discord-bot/*'",
|
|
"release": "cliff-jumper"
|
|
},
|
|
"bin": "./dist/create-discord-bot.mjs",
|
|
"directories": {
|
|
"lib": "src"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"template"
|
|
],
|
|
"contributors": [
|
|
"Crawl <icrawltogo@gmail.com>",
|
|
"SpaceEEC <spaceeec@yahoo.com>",
|
|
"Vlad Frangu <kingdgrizzle@gmail.com>",
|
|
"Aura Román <kyradiscord@gmail.com>",
|
|
"Jiralite <jiralite@live.co.uk>"
|
|
],
|
|
"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"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/discordjs/discord.js/issues"
|
|
},
|
|
"homepage": "https://discord.js.org",
|
|
"dependencies": {
|
|
"chalk": "^5.2.0",
|
|
"commander": "^10.0.1",
|
|
"validate-npm-package-name": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@favware/cliff-jumper": "^2.0.0",
|
|
"@microsoft/api-extractor": "^7.34.8",
|
|
"@types/node": "16.18.25",
|
|
"@types/validate-npm-package-name": "^4.0.0",
|
|
"@vitest/coverage-c8": "^0.31.0",
|
|
"cross-env": "^7.0.3",
|
|
"eslint": "^8.39.0",
|
|
"eslint-config-neon": "^0.1.46",
|
|
"eslint-formatter-pretty": "^5.0.0",
|
|
"prettier": "^2.8.8",
|
|
"tsup": "^6.7.0",
|
|
"typescript": "^5.0.4",
|
|
"vitest": "^0.31.0"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.16.0"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|