-
-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
151 lines (151 loc) · 5.04 KB
/
package.json
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "skyra",
"version": "6.3.0",
"description": "Multipurpose Discord Bot built on Sapphire Framework",
"author": "Skyra Project",
"license": "Apache-2.0",
"main": "./dist/Skyra.js",
"type": "module",
"imports": {
"#utils/common": "./dist/lib/util/common/index.js",
"#utils/functions": "./dist/lib/util/functions/index.js",
"#utils/resolvers": "./dist/lib/util/resolvers/index.js",
"#utils/*": "./dist/lib/util/*.js",
"#lib/database/entities": "./dist/lib/database/entities/index.js",
"#lib/database/settings": "./dist/lib/database/settings/index.js",
"#lib/database": "./dist/lib/database/index.js",
"#lib/discord": "./dist/lib/discord/index.js",
"#lib/moderation/actions": "./dist/lib/moderation/actions/index.js",
"#lib/moderation/common": "./dist/lib/moderation/common/index.js",
"#lib/moderation/managers/loggers": "./dist/lib/moderation/managers/loggers/index.js",
"#lib/moderation/managers": "./dist/lib/moderation/managers/index.js",
"#lib/moderation/workers": "./dist/lib/moderation/workers/index.js",
"#lib/moderation": "./dist/lib/moderation/index.js",
"#lib/schedule": "./dist/lib/schedule/index.js",
"#lib/structures/data": "./dist/lib/structures/data/index.js",
"#lib/structures/managers": "./dist/lib/structures/managers/index.js",
"#lib/structures": "./dist/lib/structures/index.js",
"#lib/setup": "./dist/lib/setup/index.js",
"#lib/types": "./dist/lib/types/index.js",
"#lib/i18n/languageKeys": "./dist/lib/i18n/languageKeys/index.js",
"#lib/i18n": "./dist/lib/i18n/index.js",
"#lib/*": "./dist/lib/*.js",
"#languages": "./dist/languages/index.js",
"#root/*": "./dist/*.js"
},
"scripts": {
"build": "tsc -b src",
"dev": "yarn build && yarn start",
"watch": "tsc -b src -w",
"watch:start": "tsc-watch -b src --onSuccess \"yarn start\"",
"prisma:generate": "yarn prisma generate",
"clean": "node scripts/build/clean.mjs",
"start": "node --enable-source-maps dist/Skyra.js",
"start:profiler:0x": "0x --collect-only dist/Skyra.js",
"test": "vitest run",
"lint": "eslint --fix --ext ts src tests",
"format": "prettier --write --log-level=warn \"{src,tests}/**/*.{js,ts,json}\"",
"scripts:tlds": "node scripts/tlds.mjs",
"scripts:migration": "node scripts/migrations.mjs",
"dockerps": "pwsh -NoLogo ./.docker/control.ps1",
"update": "yarn upgrade-interactive"
},
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@discordjs/collection": "^2.1.1",
"@discordjs/core": "^1.2.0",
"@influxdata/influxdb-client": "^1.35.0",
"@influxdata/influxdb-client-apis": "^1.35.0",
"@prisma/client": "^6.1.0",
"@sapphire/async-queue": "^1.5.5",
"@sapphire/bitfield": "^1.2.4",
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord.js-utilities": "7.3.1",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "5.3.1",
"@sapphire/iterator-utilities": "^2.0.1",
"@sapphire/plugin-api": "^7.0.3",
"@sapphire/plugin-editable-commands": "^4.0.3",
"@sapphire/plugin-i18next": "^7.1.3",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-subcommands": "^7.0.1",
"@sapphire/ratelimits": "^2.4.11",
"@sapphire/snowflake": "^3.5.5",
"@sapphire/stopwatch": "^1.5.4",
"@sapphire/time-utilities": "^1.7.14",
"@sapphire/utilities": "^3.18.1",
"@sentry/node": "^8.47.0",
"@skyra/ai": "^1.2.0",
"@skyra/char": "^1.0.3",
"@skyra/env-utilities": "^1.3.0",
"@skyra/jaro-winkler": "^1.1.1",
"@skyra/twitch-helpers": "^2.0.1",
"bufferutil": "^4.0.9",
"colorette": "^2.0.20",
"confusables": "^1.1.1",
"diff": "^7.0.0",
"discord-api-types": "0.37.98",
"discord.js": "~14.16.3",
"he": "^1.2.0",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"0x": "^5.8.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/backoff": "^2.5.5",
"@types/diff": "^6.0.0",
"@types/he": "^1.2.3",
"@types/node": "^22.9.0",
"@types/pg": "^8.11.10",
"@types/ws": "^8.5.13",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.8",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prisma": "^6.1.0",
"prisma-json-types-generator": "^3.2.2",
"tsc-watch": "^6.2.1",
"typescript": "~5.4.5",
"vitest": "^2.1.8"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"discord-api-types": "0.37.98",
"minimist": "^1.2.8"
},
"engines": {
"node": "^22.11.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/skyra-project/skyra.git"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]",
"volta": {
"node": "22.12.0"
}
}