xyter/package.json
semantic-release-bot 6a21c9cd83 chore(release): 2.3.0-dev.1 [skip ci]
# [2.3.0-dev.1](https://github.com/ZynerOrg/xyter/compare/v2.2.1...v2.3.0-dev.1) (2023-06-02)

### Bug Fixes

* 🐛 fix reputation repute function ([828524d](828524d4c2))
*  throw error if user tries to execute same command while one is processing ([af14c75](af14c7598e))

### Features

* 🚸 improve style for users on interaction error ([acdd507](acdd5076e7))
* 🚸 make bonus commands set their time at midnights ([26d03c2](26d03c282c))
*  ability to set prorata cooldowns ([e223309](e223309796))
2023-06-02 10:56:44 +00:00

71 lines
2 KiB
JSON

{
"name": "xyter",
"version": "2.3.0-dev.1",
"private": true,
"description": "A multi purpose Discord bot written in TypeScript with Discord.js",
"main": "dist/index.js",
"scripts": {
"dev": "tsc --watch & NODE_ENV=development nodemon dist",
"build": "tsc -p .",
"prisma:generate": "prisma generate",
"test": "jest",
"start": "node dist",
"start:migrate:prod": "prisma migrate deploy && npm run start",
"prettier-format": "prettier 'src/**/*.ts' --write",
"lint": "eslint ./src --ext .ts"
},
"keywords": [
"Zyner",
"xyter",
"controlpanel",
"controlpanel.gg"
],
"repository": {
"type": "git",
"url": "https://github.com/ZynerOrg/xyter.git"
},
"author": "Vermium Sifell <vermium@zyner.org> (https://zyner.org)",
"contributors": [
"Joshua Schmitt <me@jqshuv.xyz> (https://jqshuv.xyz)"
],
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/ZynerOrg/xyter/issues",
"email": "vermium@zyner.org"
},
"dependencies": {
"@prisma/client": "^4.7.1",
"axios": "^1.4.0",
"chance": "^1.1.9",
"date-fns": "^2.29.3",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"node-schedule": "^2.1.0",
"uuid": "^9.0.0",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"@semantic-release/git": "^10.0.1",
"@semantic-release/release-notes-generator": "^11.0.0",
"@types/chance": "1.1.3",
"@types/node-schedule": "2.1.0",
"@types/uuid": "^9.0.1",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-loops": "0.3.0",
"eslint-plugin-prettier": "4.2.1",
"lint-staged": "^13.2.2",
"nodemon": "^2.0.22",
"prettier": "^2.8.8",
"prisma": "^4.9.0",
"semantic-release": "^21.0.0",
"typescript": "^5.0.4"
},
"lint-staged": {
"*.ts": "eslint --cache --fix"
}
}