Files
discordeno/examples/bigbot/package.json
T
dependabot[bot] 56b89d4123 build(deps): bump the example-deps group across 5 directories with 4 updates (#5386)
Bumps the example-deps group with 1 update in the /examples/advanced directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).
Bumps the example-deps group with 1 update in the /examples/beginner directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).
Bumps the example-deps group with 4 updates in the /examples/bigbot directory: [@discordeno/bot](https://github.com/discordeno/discordeno), [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node), [@fastify/multipart](https://github.com/fastify/fastify-multipart) and [fastify](https://github.com/fastify/fastify).
Bumps the example-deps group with 1 update in the /examples/minimal directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).
Bumps the example-deps group with 1 update in the /examples/reaction-roles directory: [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node).


Updates `@types/node` from 26.2.0 to 26.4.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/node` from 26.2.0 to 26.4.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@discordeno/bot` from 22.0.1-next.8caf1b4 to 22.0.1-next.9832342
- [Release notes](https://github.com/discordeno/discordeno/releases)
- [Commits](https://github.com/discordeno/discordeno/commits)

Updates `@types/node` from 26.2.0 to 26.4.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@fastify/multipart` from 10.1.0 to 10.1.1
- [Release notes](https://github.com/fastify/fastify-multipart/releases)
- [Commits](https://github.com/fastify/fastify-multipart/compare/v10.1.0...v10.1.1)

Updates `fastify` from 5.11.3 to 5.12.1
- [Release notes](https://github.com/fastify/fastify/releases)
- [Commits](https://github.com/fastify/fastify/compare/v5.11.3...v5.12.1)

Updates `@types/node` from 26.2.0 to 26.4.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/node` from 26.2.0 to 26.4.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-deps
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-deps
- dependency-name: "@discordeno/bot"
  dependency-version: 22.0.1-next.9832342
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: example-deps
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-deps
- dependency-name: "@fastify/multipart"
  dependency-version: 10.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: example-deps
- dependency-name: fastify
  dependency-version: 5.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: example-deps
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-deps
- dependency-name: "@types/node"
  dependency-version: 26.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: example-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-09-01 14:54:03 +02:00

36 lines
1.0 KiB
JSON

{
"name": "dd-bigbot",
"version": "1.0.0",
"description": "A scalable bot for big bot developers.",
"main": "dist/index.js",
"type": "module",
"license": "ISC",
"private": true,
"packageManager": "yarn@4.17.1",
"scripts": {
"start:bot": "node dist/bot/index.js",
"start:rest": "node dist/rest/index.js",
"start:gateway": "node dist/gateway/index.js",
"build": "tsc",
"build:watch": "tsc --watch",
"dev:bot": "node --watch --watch-preserve-output dist/bot/index.js",
"dev:rest": "node --watch --watch-preserve-output dist/rest/index.js",
"dev:gateway": "node --watch --watch-preserve-output dist/gateway/index.js"
},
"dependencies": {
"@discordeno/bot": "22.0.1-next.9832342",
"@fastify/multipart": "^10.1.1",
"@influxdata/influxdb-client": "^1.35.0",
"amqplib": "^2.0.1",
"chalk": "^6.0.0",
"dotenv": "^17.4.2",
"fastify": "^5.12.1"
},
"devDependencies": {
"@types/amqplib": "^0.10.8",
"@types/node": "^26.4.0",
"chokidar": "^5.0.0",
"typescript": "^7.0.2"
}
}