UNPKG

discordx

Version:

Create a discord bot with TypeScript and Decorators!

77 lines 1.81 kB
{ "name": "discordx", "version": "11.13.3", "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/issues", "email": "vijayymmeena@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/internal": "^1.2.0", "@discordx/di": "^3.3.4" }, "devDependencies": { "@types/jest": "^30.0.0", "@types/lodash": "^4.17.21", "discord.js": "^14.25.1", "jest": "^30.2.0", "reflect-metadata": "^0.2.2", "ts-jest": "^29.4.6", "ts-jest-resolver": "^2.0.1", "typescript": "^5.9.3", "@discordx/importer": "^1.3.3" }, "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" } }