mirror of
https://github.com/pacnpal/markov-discord.git
synced 2025-12-20 03:01:04 -05:00
Removes [xml2js](https://github.com/Leonidas-from-XIV/node-xml2js). It's no longer used after updating ancestor dependency [typeorm](https://github.com/typeorm/typeorm). These dependencies need to be updated together. Removes `xml2js` Updates `typeorm` from 0.3.6 to 0.3.14 - [Release notes](https://github.com/typeorm/typeorm/releases) - [Changelog](https://github.com/typeorm/typeorm/blob/master/CHANGELOG.md) - [Commits](https://github.com/typeorm/typeorm/compare/0.3.6...0.3.14) --- updated-dependencies: - dependency-name: xml2js dependency-type: indirect - dependency-name: typeorm dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
81 lines
2.3 KiB
JSON
81 lines
2.3 KiB
JSON
{
|
|
"name": "markov-discord",
|
|
"version": "2.2.0",
|
|
"description": "A conversational Markov chain bot for Discord",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"start": "NODE_ENV=production pm2 start --no-daemon dist/index.js",
|
|
"start:ts": "ts-node src/index.ts",
|
|
"build": "rimraf dist && tsc",
|
|
"lint": "tsc --noEmit && eslint .",
|
|
"docker:build": "docker build . -t charlocharlie/markov-discord:latest --target deploy",
|
|
"docker:run": "docker run --rm -ti -v $(pwd)/config:/usr/app/config charlocharlie/markov-discord:latest",
|
|
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
|
|
"docs": "typedoc --out docs src/config/classes.ts"
|
|
},
|
|
"repository": "https://github.com/claabs/markov-discord.git",
|
|
"keywords": [
|
|
"discord",
|
|
"markov",
|
|
"chain",
|
|
"markov-chain",
|
|
"bot",
|
|
"discord-js",
|
|
"discord-bot",
|
|
"markov-chain-bot",
|
|
"docker"
|
|
],
|
|
"author": {
|
|
"name": "Charlie Laabs",
|
|
"url": "https://github.com/claabs"
|
|
},
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@discordjs/builders": "^0.13.0",
|
|
"@discordjs/rest": "^0.4.1",
|
|
"@types/fs-extra": "^9.0.13",
|
|
"better-sqlite3": "^7.5.3",
|
|
"bufferutil": "^4.0.6",
|
|
"class-transformer": "^0.5.1",
|
|
"class-validator": "^0.14.0",
|
|
"date-fns": "^2.28.0",
|
|
"discord-api-types": "^0.33.0",
|
|
"discord.js": "^13.7.0",
|
|
"dotenv": "^16.0.1",
|
|
"erlpack": "github:discord/erlpack",
|
|
"fs-extra": "^10.1.0",
|
|
"json5": "^2.2.2",
|
|
"markov-strings-db": "^4.2.0",
|
|
"node-fetch": "^2.6.7",
|
|
"pino": "^7.11.0",
|
|
"pino-pretty": "^7.6.1",
|
|
"reflect-metadata": "^0.1.13",
|
|
"simple-eta": "^3.0.2",
|
|
"source-map-support": "^0.5.21",
|
|
"typeorm": "^0.3.14",
|
|
"utf-8-validate": "^5.0.9",
|
|
"zlib-sync": "^0.1.7"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.36",
|
|
"@types/validator": "^13.7.2",
|
|
"@typescript-eslint/eslint-plugin": "^5.25.0",
|
|
"@typescript-eslint/parser": "^5.25.0",
|
|
"eslint": "^8.16.0",
|
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-import": "^2.26.0",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"pm2": "^5.2.0",
|
|
"prettier": "^2.6.2",
|
|
"rimraf": "^3.0.2",
|
|
"ts-node": "^10.7.0",
|
|
"typedoc": "^0.22.15",
|
|
"types-package-json": "^2.0.39",
|
|
"typescript": "^4.6.4"
|
|
},
|
|
"engines": {
|
|
"node": "16"
|
|
}
|
|
}
|