mirror of
https://github.com/sern-handler/handler
synced 2026-06-06 01:16:55 +00:00
* feat: add class based commands * docs: add deprecation warnings * feat: add deprecation warnings * feat: add more deprecation warnings * feat: add prototype ClassModule abstract class * feat: add EventModuleClass prototype, change names * feat: more flexible contract * feat: EventExecutable * fix: typo * feat: made abstract classes because of defaults * fix: typings * feat: update Context typings, update to djs v15 * chore: update typescript dependency * chore: bump version * chore: update ignore * chore: prettier * docs: change readme to be docusaurus compliant
55 lines
1.6 KiB
JSON
55 lines
1.6 KiB
JSON
{
|
|
"name": "@sern/handler",
|
|
"version": "1.2.0",
|
|
"description": "A customizable, batteries-included, powerful discord.js framework to automate and streamline bot development.",
|
|
"main": "dist/cjs/index.cjs",
|
|
"module": "dist/esm/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/esm/index.mjs",
|
|
"require": "./dist/cjs/index.cjs"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"watch": "tsup --watch --dts",
|
|
"clean-modules": "rimraf node_modules/ && npm install",
|
|
"lint": "eslint src/**/*.ts",
|
|
"format": "eslint src/**/*.ts --fix",
|
|
"build": "tsup && node scripts/mkjson.mjs dist/cjs dist/esm && tsup --dts-only --outDir dist",
|
|
"publish": "npm run build && npm publish"
|
|
},
|
|
"keywords": [
|
|
"sern-handler",
|
|
"sern",
|
|
"handler",
|
|
"sern handler",
|
|
"wrapper",
|
|
"discord.js",
|
|
"framework"
|
|
],
|
|
"author": "SernDevs",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"rxjs": "^7.5.6",
|
|
"ts-pattern": "^4.0.2",
|
|
"ts-results-es": "^3.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "5.36.1",
|
|
"@typescript-eslint/parser": "5.36.2",
|
|
"eslint": "8.22.0",
|
|
"prettier": "2.7.1",
|
|
"tsup": "^6.1.3",
|
|
"typescript": "^4.8.3"
|
|
},
|
|
"peerDependencies": {
|
|
"discord.js": "^14.5.x"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sern-handler/handler.git"
|
|
},
|
|
"homepage": "https://sern-handler.js.org"
|
|
}
|