Skip to content

Commit 59a5c1c

Browse files
committed
init with turborepo
1 parent 14027c0 commit 59a5c1c

File tree

241 files changed

+7982
-16467
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+7982
-16467
lines changed

Dockerfile

Lines changed: 0 additions & 25 deletions
This file was deleted.

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Julius Marminge
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 139 additions & 181 deletions
Large diffs are not rendered by default.

apps/bot/package.json

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"name": "@master-bot/bot",
3+
"version": "1.0.0",
4+
"description": "a discord music bot with guild , gifs and misc commands",
5+
"private": true,
6+
"main": "dist/index.js",
7+
"scripts": {
8+
"build": "pnpm with-env tsc",
9+
"copy-scripts": "pnpx ncp ./scripts ./dist/",
10+
"dev": "pnpm build && pnpm copy-scripts && pnpm start",
11+
"start": "pnpm with-env node dist/index.js",
12+
"with-env": "dotenv -e ../../.env --"
13+
},
14+
"author": "Nir Gal",
15+
"license": "ISC",
16+
"engines": {
17+
"node": "^18"
18+
},
19+
"dependencies": {
20+
"@discordjs/collection": "^1.5.1",
21+
"@lavaclient/spotify": "^3.1.0",
22+
"@lavalink/encoding": "^0.1.2",
23+
"@master-bot/api": "^0.1.0",
24+
"@napi-rs/canvas": "^0.1.41",
25+
"@sapphire/decorators": "^6.0.1",
26+
"@sapphire/discord.js-utilities": "^7.0.0",
27+
"@sapphire/framework": "^4.5.0",
28+
"@sapphire/time-utilities": "^1.7.9",
29+
"@sapphire/utilities": "^3.12.0",
30+
"@t3-oss/env-core": "^0.6.0",
31+
"@trpc/client": "^10.34.0",
32+
"axios": "^1.4.0",
33+
"discord.js": "^14.11.0",
34+
"genius-discord-lyrics": "1.0.5",
35+
"google-translate-api-x": "^10.6.7",
36+
"ioredis": "^5.3.2",
37+
"iso-639-1": "^2.1.15",
38+
"lavaclient": "^4.1.1",
39+
"metadata-filter": "^1.3.0",
40+
"ncp": "^2.0.0",
41+
"node-fetch": "^3.3.1",
42+
"string-progressbar": "^1.0.4",
43+
"tiny-typed-emitter": "^2.1.0",
44+
"undici": "^5.22.1",
45+
"winston": "^3.10.0",
46+
"winston-daily-rotate-file": "^4.7.1",
47+
"zod": "^3.21.4"
48+
},
49+
"devDependencies": {
50+
"@lavaclient/types": "^2.1.1",
51+
"@sapphire/ts-config": "^4.0.0",
52+
"@types/ioredis": "^4.28.10",
53+
"@types/node": "^20.4.1",
54+
"@typescript-eslint/eslint-plugin": "^6.0.0",
55+
"@typescript-eslint/parser": "^6.0.0",
56+
"dotenv": "^16.3.1",
57+
"dotenv-cli": "^7.2.1",
58+
"prettier": "^3.0.0",
59+
"typescript": "^5.1.6"
60+
},
61+
"eslintConfig": {
62+
"root": true,
63+
"extends": [
64+
"@master-bot/eslint-config/base"
65+
]
66+
}
67+
}

0 commit comments

Comments
 (0)