-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.95 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
{
"name": "goblin",
"version": "2.0.0",
"private": true,
"description": "A custom Clash of Clans bot for EYG Family of Clans",
"license": "MPL-2.0",
"author": "r-priyam <[email protected]>",
"type": "module",
"imports": {
"#root/*": "./dist/*.js",
"#lib/*": "./dist/lib/*.js",
"#lib/coc": "./dist/lib/coc/index.js",
"#utils/*": "./dist/lib/util/*.js"
},
"main": "dist/goblin.js",
"scripts": {
"build": "tsup",
"dev": "tsup --watch --onSuccess \"yarn start\"",
"format": "prettier --write . && eslint src --fix",
"lint": "prettier --check . && eslint src",
"migrate": "node scripts/dbMigration.mjs",
"migrate:new": "ley new $0 --timestamp --esm",
"start": "node --enable-source-maps dist/goblin.js",
"sync-docker": "node scripts/syncDocker.mjs",
"typecheck": "tsc -b src",
"update": "yarn upgrade-interactive",
"watch": "tsup --watch"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": [
"prettier --write --loglevel=warn \"src/**/*.ts\"",
"eslint src --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"resolutions": {
"minimist": "^1.2.8"
},
"dependencies": {
"@ltd/j-toml": "^1.38.0",
"@napi-rs/canvas": "0.1.65",
"@sapphire/cron": "^1.2.1",
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord.js-utilities": "^7.3.1",
"@sapphire/framework": "5.3.1",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/plugin-scheduled-tasks": "^10.0.2",
"@sapphire/plugin-subcommands": "7.0.1",
"@sapphire/result": "^2.7.2",
"@sapphire/stopwatch": "^1.5.4",
"@sapphire/type": "^2.6.0",
"@sapphire/utilities": "^3.18.1",
"@sentry/node": "8.47.0",
"@skyra/env-utilities": "^1.3.0",
"bufferutil": "^4.0.8",
"bullmq": "^5.34.5",
"clashofclans.js": "^3.3.20",
"colorette": "^2.0.20",
"discord-api-types": "^0.37.114",
"discord.js": "^14.16.3",
"figlet": "^1.8.0",
"fuse.js": "^7.0.0",
"gradient-string": "^3.0.0",
"ioredis": "^5.4.2",
"markdown-table": "^3.0.4",
"nanoid": "^5.0.9",
"postgres": "^3.4.5",
"radash": "^12.1.0",
"reflect-metadata": "^0.2.2",
"string-strip-html": "^13.4.8",
"undici": "^7.2.0",
"utf-8-validate": "^6.0.5",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@swc/core": "^1.10.2",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.17.0",
"eslint-config-neon": "^0.2.4",
"eslint-formatter-pretty": "^6.0.1",
"ley": "^0.8.1",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"tsup": "8.3.5",
"typescript": "^5.7.2"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.0.0,<21.0.0"
}
}