Files
Yumi/package.json
T

56 lines
1.8 KiB
JSON
Raw Normal View History

2021-09-14 09:55:42 -07:00
{
"dependencies": {
2022-01-30 20:08:21 +07:00
"@discordjs/opus": "^0.7.0",
2022-06-06 13:00:38 +07:00
"@discordjs/rest": "^0.5.0",
"@discordjs/voice": "^0.10.0",
2021-09-20 12:37:26 -07:00
"@types/color-thief-node": "^1.0.1",
2022-02-07 10:41:55 +07:00
"@types/os-utils": "^0.0.1",
2022-01-27 17:58:14 +07:00
"bluebird": "^3.7.2",
2022-01-30 20:08:21 +07:00
"bufferutil": "^4.0.6",
2021-09-20 12:37:26 -07:00
"color-thief-node": "^1.0.4",
2021-09-19 08:25:11 -07:00
"country-code-emoji": "^2.3.0",
2022-02-27 16:32:32 +07:00
"country-code-lookup": "^0.0.20",
2022-06-27 21:08:06 +07:00
"discord-api-types": "^0.35.0",
2022-07-05 21:21:11 +07:00
"discord.js": "14.0.0-dev.1657022642-fd1c240",
2022-06-06 13:00:38 +07:00
"dotenv": "^16.0.1",
2022-06-06 20:11:24 +07:00
"i18n": "^0.15.0",
2022-05-01 17:56:01 +07:00
"libsodium-wrappers": "^0.7.10",
2021-09-19 04:03:13 -07:00
"node-osu": "^2.2.1",
2022-02-07 10:41:55 +07:00
"os-utils": "^0.0.14",
2022-05-01 17:56:01 +07:00
"ping": "^0.4.2",
2022-06-04 13:08:00 +07:00
"play-dl": "^1.9.5",
2021-09-14 09:55:42 -07:00
"ts-custom-error": "^3.2.0",
2022-06-27 21:08:06 +07:00
"typescript": "^4.7.4",
2022-05-01 17:56:01 +07:00
"utf-8-validate": "^5.0.9",
2022-01-25 13:35:40 +07:00
"validator": "^13.7.0",
2022-01-30 20:23:46 +07:00
"winston": "3.3.3",
2022-01-30 20:08:21 +07:00
"zlib-sync": "^0.1.7"
2021-09-14 09:55:42 -07:00
},
"devDependencies": {
2022-06-27 21:08:06 +07:00
"@prisma/client": "^3.15.2",
2022-01-27 17:58:14 +07:00
"@types/bluebird": "^3.5.36",
2022-06-06 20:11:24 +07:00
"@types/i18n": "^0.13.3",
2022-06-27 21:08:06 +07:00
"@types/node": "^18.0.0",
2022-01-25 19:51:51 +07:00
"@types/ping": "^0.4.1",
2022-06-06 13:00:38 +07:00
"@types/validator": "^13.7.3",
2022-03-05 21:58:02 +07:00
"copyfiles": "^2.4.1",
2022-06-27 21:08:06 +07:00
"prisma": "^3.15.2",
2022-06-06 13:00:38 +07:00
"ts-node-dev": "^2.0.0"
2021-09-14 09:55:42 -07:00
},
"scripts": {
"tsc": "tsc",
"development": "ts-node-dev ./src/index.ts --respawn --transpileOnly",
2022-03-06 21:48:14 +07:00
"build": "tsc -b && copyfiles -u 1 configs_example/**/*.* dist/configs_example/",
2022-05-01 18:06:08 +07:00
"docker-build": "docker build . -t ghcr.io/yuzuzensai/yumi:latest",
"docker-run": "docker run -d --name yumi --mount type=bind,source=\"$(pwd)\"/configs,target=/home/node/app/configs --network host --env-file .env ghcr.io/yuzuzensai/yumi:latest",
2022-03-06 21:48:14 +07:00
"production": "tsc && node ./dist/index.js",
2021-09-14 09:55:42 -07:00
"test": "mocha -r ts-node/register tests/**/*.ts"
},
"name": "yumi",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/YuzuZensai/Yumi.git",
"author": "YuzuZensai <contact@kirameki.pink>",
2022-05-01 18:07:48 +07:00
"license": "GPL-3.0"
2021-09-14 09:55:42 -07:00
}