commandbot
Version:
A framework that helps you create your own Discord bot easier.
44 lines (43 loc) • 1.23 kB
JSON
{
"name": "commandbot",
"version": "4.2.0",
"description": "A framework that helps you create your own Discord bot easier.",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"types": "dist/mjs/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/GRZ4NA/CommandBot.git"
},
"keywords": [
"discord",
"bot",
"typescript",
"discordjs",
"framework",
"slashcommands",
"interactions"
],
"scripts": {
"compile": "rd dist /S /Q && tsc -p tsconfig-mjs.json && tsc -p tsconfig-cjs.json && package-create.bat",
"test": "node test/index.js"
},
"author": "GRZANA",
"license": "MIT",
"bugs": {
"url": "https://github.com/GRZ4NA/CommandBot/issues"
},
"homepage": "https://github.com/GRZ4NA/CommandBot#readme",
"dependencies": {
"axios": "^0.21.4",
"discord.js": "^13.1.0"
},
"devDependencies": {
"@types/node": "^15.12.4",
"@types/ws": "^7.4.5"
},
"exports": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js"
}
}