UNPKG

dscaffold

Version:

A TypeScript framework for scaffolding modular Discord bot projects with dynamic command and event loading

73 lines (72 loc) 1.68 kB
{ "name": "dscaffold", "version": "1.0.0", "description": "A TypeScript framework for scaffolding modular Discord bot projects with dynamic command and event loading", "main": "dist/index.js", "bin": { "dscaffold": "./dist/cli.js" }, "scripts": { "build": "tsc", "dev": "ts-node-dev --respawn --transpile-only src/cli.ts", "start": "node dist/cli.js", "test": "jest", "prepublishOnly": "npm run build", "publish:npm": "npm run build && npm publish", "clean": "rimraf dist" }, "keywords": [ "discord", "bot", "cli", "typescript", "scaffold", "generator", "framework", "dynamic-loading" ], "author": "Dscaffold Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/dscaffold/dscaffold.git" }, "homepage": "https://github.com/dscaffold/dscaffold#readme", "bugs": { "url": "https://github.com/dscaffold/dscaffold/issues" }, "dependencies": { "chalk": "^4.1.2", "commander": "^11.1.0", "discord.js": "^14.21.0", "fs-extra": "^11.2.0", "inquirer": "^8.2.6", "mustache": "^4.2.0", "ora": "^5.4.1" }, "devDependencies": { "@types/fs-extra": "^11.0.4", "@types/inquirer": "^8.2.10", "@types/jest": "^29.5.12", "@types/mustache": "^4.2.5", "@types/node": "^20.11.24", "jest": "^29.7.0", "rimraf": "^5.0.5", "ts-jest": "^29.1.2", "ts-node": "^10.9.2", "ts-node-dev": "^2.0.0", "typescript": "^5.3.3" }, "engines": { "node": ">=16.0.0" }, "files": [ "dist", "templates", "README.md", "LICENSE" ], "publishConfig": { "access": "public" } }