-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
90 lines (90 loc) · 2.65 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
{
"name": "highlight-bot",
"version": "3.0.0",
"description": "An utility bot written in Sapphire to get highlighted when a word, or regular expression is said",
"private": true,
"main": "dist/Highlight.js",
"type": "module",
"imports": {
"#internals/*": "./dist/lib/internals/*.js",
"#hooks/*": "./dist/lib/utils/hooks/*.js",
"#setup": "./dist/lib/setup.js",
"#customIds/*": "./dist/lib/structures/customIds/*.js",
"#structures/*": "./dist/lib/structures/*.js",
"#types/*": "./dist/lib/types/*.js",
"#utils/*": "./dist/lib/utils/*.js",
"#workers/*": "./dist/lib/workers/*.js"
},
"scripts": {
"build": "tsc",
"clean": "rimraf dist",
"cleanbuild": "yarn clean && tsc",
"coverage": "vitest run --coverage",
"lint": "prettier --check . && cross-env TIMING=1 eslint --format=pretty src tests",
"format": "prettier --write . && cross-env TIMING=1 eslint --fix --format=pretty src tests",
"start": "yarn cleanbuild && node .",
"test": "vitest run",
"watch": "tsc -w"
},
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@mikro-orm/sql-highlighter": "^1.0.1",
"@prisma/client": "^5.19.1",
"@sapphire/decorators": "^6.1.0",
"@sapphire/discord-utilities": "^3.4.0",
"@sapphire/discord.js-utilities": "^7.3.0",
"@sapphire/framework": "^5.2.1",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-subcommands": "^6.0.3",
"@sapphire/stopwatch": "^1.5.2",
"@sapphire/time-utilities": "^1.7.12",
"@sapphire/timestamp": "^1.0.3",
"@sapphire/utilities": "^3.17.0",
"@skyra/env-utilities": "^1.3.0",
"@skyra/jaro-winkler": "^1.1.1",
"bufferutil": "^4.0.8",
"colorette": "^2.0.20",
"confusables": "^1.1.1",
"discord-api-types": "0.37.97",
"discord.js": "^14.16.1",
"re2": "^1.21.4",
"tslib": "^2.7.0",
"utf-8-validate": "^6.0.4",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@ts-safeql/eslint-plugin": "^3.4.1",
"@types/is-ci": "^3.0.4",
"@types/lodash.merge": "^4.6.9",
"@types/node": "^20.16.4",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"@vitest/coverage-v8": "^2.0.5",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-config-neon": "^0.1.62",
"eslint-formatter-pretty": "^6.0.1",
"is-ci": "^3.0.1",
"libpg-query": "^16.2.0",
"lodash.merge": "^4.6.2",
"prettier": "^3.3.3",
"prisma": "^5.19.1",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"author": {
"name": "Vlad Frangu",
"email": "[email protected]"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "[email protected]",
"volta": {
"node": "20.17.0",
"yarn": "4.4.1"
}
}