Files
Yumi/package.json
T

62 lines
2.0 KiB
JSON
Raw Normal View History

2021-09-14 09:55:42 -07:00
{
"dependencies": {
2022-10-29 14:56:04 +00:00
"@discordjs/opus": "^0.9.0",
2023-04-19 01:00:48 +07:00
"@discordjs/rest": "^1.7.0",
"@discordjs/voice": "^0.16.0",
2023-03-05 14:21:14 +07:00
"@types/color-thief-node": "^1.0.2",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
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",
"bufferutil": "^4.0.7",
2021-09-20 12:37:26 -07:00
"color-thief-node": "^1.0.4",
2022-08-25 18:18:57 +07:00
"cors": "^2.8.5",
2021-09-19 08:25:11 -07:00
"country-code-emoji": "^2.3.0",
2023-04-19 01:00:48 +07:00
"country-code-lookup": "^0.0.23",
"discord-api-types": "^0.37.62",
2023-05-08 06:04:16 +00:00
"discord.js": "^14.11.0",
2022-10-05 12:34:10 +07:00
"dotenv": "^16.0.3",
"express": "^4.18.2",
2022-10-05 12:34:10 +07:00
"i18n": "^0.15.1",
2023-03-05 14:21:14 +07:00
"libsodium-wrappers": "^0.7.11",
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",
2023-03-17 15:06:35 +07:00
"ping": "^0.4.4",
"play-dl": "^1.9.6",
2022-11-08 14:36:04 +00:00
"ts-custom-error": "^3.3.1",
2023-04-19 01:00:48 +07:00
"typescript": "^5.0.4",
2023-03-05 14:21:14 +07:00
"utf-8-validate": "^6.0.3",
"validator": "^13.9.0",
2023-04-23 13:13:20 +07:00
"vrchat": "^1.11.1",
"winston": "^3.8.2",
2023-03-05 14:21:14 +07:00
"zlib-sync": "^0.1.8"
2021-09-14 09:55:42 -07:00
},
"devDependencies": {
2023-04-19 01:00:48 +07:00
"@prisma/client": "^4.13.0",
2023-03-05 14:21:14 +07:00
"@types/bluebird": "^3.5.38",
2022-12-27 13:16:31 +00:00
"@types/i18n": "^0.13.6",
2023-05-15 06:00:58 +00:00
"@types/node": "^20.1.4",
2022-01-25 19:51:51 +07:00
"@types/ping": "^0.4.1",
2023-04-19 01:00:48 +07:00
"@types/validator": "^13.7.15",
2022-03-05 21:58:02 +07:00
"copyfiles": "^2.4.1",
2023-04-19 01:00:48 +07:00
"prisma": "^4.13.0",
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-10-30 22:21:46 +07:00
"docker-build": "docker build . -t ghcr.io/kirameki-cafe/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/kirameki-cafe/yumi:latest",
"docker-push": "docker push ghcr.io/kirameki-cafe/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",
2022-10-30 22:21:46 +07:00
"repository": "https://github.com/kirameki-cafe/Yumi.git",
"author": "Kirameki Café <contact@kirameki.cafe>",
2022-05-01 18:07:48 +07:00
"license": "GPL-3.0"
2021-09-14 09:55:42 -07:00
}