mrmBot-Matrix/package.json

70 lines
2.0 KiB
JSON
Raw Normal View History

2019-09-13 20:02:41 +00:00
{
2023-03-25 05:21:49 +00:00
"name": "mrmbot",
2022-10-31 17:02:51 +00:00
"version": "1.9.0",
2023-03-25 05:21:49 +00:00
"description": "A Matrix bot with miscellaneous features",
"exports": "./app.js",
"bin": "./app.js",
"type": "module",
2019-09-13 20:02:41 +00:00
"engines": {
"node": ">=15"
2019-09-13 20:02:41 +00:00
},
"scripts": {
2021-12-31 04:45:32 +00:00
"build": "cmake-js compile",
"build:debug": "cmake-js compile -DCMAKE_BUILD_TYPE=Debug",
2022-06-18 00:44:29 +00:00
"docker:build": "DOCKER_BUILDKIT=1 docker build -t esmbot .",
"docker:run-bot": "docker run --rm --network=host esmbot",
"docker:run-api": "docker run --rm --network=host esmbot-api",
"docker:run-lava": "docker run --rm --network host -v \"$(pwd)\"/application.yml:/opt/Lavalink/application.yml -v \"$(pwd)\"/assets:/opt/Lavalink/assets fredboat/lavalink:dev",
"start": "node app.js",
"start:debug": "DEBUG=true node app.js",
"start-api": "node api/index.js",
"start-api:debug": "DEBUG=true node app.js"
},
2023-03-25 05:21:49 +00:00
"author": "Murm <murm@murm.gay>",
2019-09-13 20:02:41 +00:00
"license": "MIT",
"repository": {
"type": "git",
2023-03-25 05:21:49 +00:00
"url": "git+https://gitdab.com/murm/mrmBot-Matrix.git"
2019-09-13 20:02:41 +00:00
},
"dependencies": {
"dotenv": "^16.0.3",
"emoji-regex": "^10.2.1",
2023-03-08 20:27:31 +00:00
"file-type": "^18.2.1",
"format-duration": "^3.0.2",
2022-06-23 03:10:39 +00:00
"jsqr": "^1.4.0",
2023-03-15 14:09:09 +00:00
"matrix-js-sdk": "^23.4.0",
2023-03-08 20:27:31 +00:00
"node-addon-api": "^5.1.0",
2022-06-23 03:10:39 +00:00
"node-emoji": "^1.11.0",
"qrcode": "^1.5.1",
2023-03-08 20:27:31 +00:00
"sharp": "^0.31.3",
"shoukaku": "^3.3.1",
"undici": "^5.20.0",
2022-09-14 18:50:38 +00:00
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
2019-09-13 20:02:41 +00:00
},
"devDependencies": {
2023-03-08 20:27:31 +00:00
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/eslint-plugin": "^7.19.1",
"@babel/plugin-proposal-class-properties": "^7.18.6",
2023-03-08 20:27:31 +00:00
"cmake-js": "^7.2.1",
"eslint": "^8.35.0",
2023-03-10 19:05:21 +00:00
"eslint-plugin-unicorn": "^46.0.0"
},
"optionalDependencies": {
2023-03-08 20:27:31 +00:00
"better-sqlite3": "^8.1.0",
2022-10-23 19:55:06 +00:00
"bufferutil": "^4.0.7",
"erlpack": "^0.1.4",
"pm2": "^5.2.2",
2023-03-08 20:27:31 +00:00
"postgres": "^3.3.4",
2022-10-23 19:55:06 +00:00
"uuid": "^9.0.0",
2023-03-08 20:27:31 +00:00
"ws": "^8.12.1",
"zlib-sync": "^0.1.8"
2022-10-23 19:55:06 +00:00
},
"binary": {
"napi_versions": [
7
]
2019-09-13 20:02:41 +00:00
}
}