UNPKG

discordx

Version:

Create a discord bot with TypeScript and Decorators!

77 lines 1.82 kB
{ "name": "discordx", "version": "11.12.4", "private": false, "description": "Create a discord bot with TypeScript and Decorators!", "keywords": [ "api", "bot", "client", "decorators", "discord", "framework", "library", "tool", "typescript" ], "homepage": "https://discordx.js.org", "bugs": { "url": "https://github.com/discordx-ts/discordx/issue", "email": "indianoceanroleplay@gmail.com" }, "repository": { "type": "git", "url": "https://github.com/discordx-ts/discordx" }, "license": "Apache-2.0", "contributors": [ "Owen Calvin <owen.gombas@gmail.com> (https://github.com/OwenCalvin)", "Vijay Meena <vijayymmeena@gmail.com> (https://github.com/vijayymmeena)" ], "exports": { ".": { "import": "./dist/index.mjs", "require": "./dist/index.js" } }, "types": "./dist/index.d.ts", "files": [ "dist", "CHANGELOG.md", "LICENSE.txt", "README.md", "SECURITY.md", "package.json" ], "dependencies": { "lodash": "^4.17.21", "@discordx/di": "^3.3.4", "@discordx/internal": "^1.1.5" }, "devDependencies": { "@types/jest": "^29.5.14", "@types/lodash": "^4.17.16", "discord.js": "^14.19.3", "jest": "^29.7.0", "reflect-metadata": "^0.2.2", "ts-jest": "^29.3.2", "ts-jest-resolver": "^2.0.1", "typescript": "^5.8.3", "@discordx/importer": "^1.3.2" }, "peerDependencies": { "discord.js": ">=14 || ^14.0.0-dev" }, "engines": { "node": ">=16.0.0", "npm": ">=7.0.0" }, "publishConfig": { "access": "public" }, "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "build:typedoc": "npx typedoc src/index.ts --out ../../docs/static/api/discordx", "test": "jest --detectOpenHandles" } }