forked from RTByte/rtbyte
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.5 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "rtbyte",
"description": "An open-source modular multipurpose Discord bot built on the incredible Sapphire framework for discord.js",
"version": "2.0.0",
"main": "dist/RTByte.js",
"author": "The RTByte Team <developers@rtbyte.xyz> (https://rtbyte.xyz)",
"contributors": [
"Rasmus Gerdin <rasmus@rtbyte.xyz> (https://rasmusgerdin.com)"
],
"license": "MIT",
"homepage": "https://github.com/RTByte/rtbyte/",
"repository": {
"type": "git",
"url": "https://github.com/RTByte/rtbyte.git"
},
"imports": {
"#root/*": "./dist/*.js",
"#languages": "./dist/languages/index.js",
"#lib/*": "./dist/lib/*.js",
"#lib/i18n/languageKeys": "./dist/lib/i18n/languageKeys/index.js",
"#lib/structures": "./dist/lib/structures/index.js",
"#lib/types": "./dist/lib/types/index.js",
"#utils/*": "./dist/lib/util/*.js",
"#utils/common": "./dist/lib/util/common/index.js",
"#utils/functions": "./dist/lib/util/functions/index.js"
},
"dependencies": {
"@discordjs/collection": "^0.2.1",
"@prisma/client": "^3.3.0",
"@sapphire/decorators": "next",
"@sapphire/discord-utilities": "^2.2.1",
"@sapphire/discord.js-utilities": "next",
"@sapphire/fetch": "next",
"@sapphire/framework": "^2.1.3",
"@sapphire/plugin-api": "next",
"@sapphire/plugin-editable-commands": "next",
"@sapphire/plugin-i18next": "next",
"@sapphire/plugin-logger": "next",
"@sapphire/plugin-subcommands": "next",
"@sapphire/stopwatch": "^1.2.3",
"@sapphire/time-utilities": "next",
"@sapphire/type": "^2.1.1",
"@sapphire/utilities": "^3.0.3",
"@skyra/editable-commands": "^2.1.0",
"bufferutil": "^4.0.5",
"colorette": "^2.0.16",
"discord.js": "^13.2.0",
"i18next": "^21.3.3",
"lexure": "^0.17.0",
"reflect-metadata": "^0.1.13",
"twemoji-parser": "^13.1.0",
"utf-8-validate": "^5.0.7"
},
"devDependencies": {
"@sapphire/eslint-config": "^4.0.1",
"@sapphire/ts-config": "^3.1.2",
"@types/i18next": "^13.0.0",
"@types/node": "^16.11.6",
"@types/twemoji-parser": "^13.1.1",
"@types/ws": "^8.2.0",
"eslint": "^8.1.0",
"npm-run-all": "^4.1.5",
"prisma": "^3.3.0",
"ts-node": "^10.3.0",
"tsc-watch": "^4.5.0",
"typescript": "^4.4.4"
},
"scripts": {
"build": "tsc -b src",
"dev": "npm run build && npm run start",
"watch": "tsc -b src -w",
"watch:start": "tsc-watch -b src --onSuccess \"npm run start\"",
"start": "node --enable-source-maps dist/RTByte.js",
"lint": "eslint --fix --ext ts src tests",
"format": "prettier --write --loglevel=warn \"{src,tests}/**/*.{js,ts,json}\""
}
}