-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
120 lines (120 loc) · 3.32 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
{
"name": "@skyra/teryl",
"version": "1.0.0",
"description": "Your favourite Discord bot for tools, part of ArchId Network",
"author": "Skyra Project <contact@skyra.pw>",
"license": "Apache-2.0",
"private": true,
"main": "dist/main.js",
"type": "module",
"imports": {
"#lib/structures": "./dist/lib/structures/index.js",
"#lib/unicode": "./dist/lib/utilities/unicode/index.js",
"#lib/*": "./dist/lib/*.js",
"#generated/*": "./src/generated/*"
},
"scripts": {
"build": "tsc -b src",
"dev": "yarn build && yarn start",
"watch": "tsc -b src -w",
"prisma:generate": "yarn prisma generate",
"clean": "rimraf dist/",
"start": "node --enable-source-maps dist/main.js",
"test": "vitest run",
"lint": "eslint --fix --ext ts src tests",
"prettier": "prettier --ignore-path=.prettierignore",
"format": "prettier --write --log-level=warn \"{src,tests,scripts}/**/*.{js,ts,json}\"",
"update": "yarn upgrade-interactive"
},
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@discordjs/collection": "^2.1.1",
"@napi-rs/canvas": "^0.1.58",
"@napi-rs/image": "^1.9.2",
"@prisma/client": "^5.21.1",
"@sapphire/async-queue": "^1.5.3",
"@sapphire/duration": "^1.1.2",
"@sapphire/result": "^2.6.6",
"@sapphire/utilities": "^3.17.0",
"@skyra/env-utilities": "^1.3.0",
"@skyra/http-framework": "^2.1.0",
"@skyra/http-framework-i18n": "^1.2.0",
"@skyra/logger": "^2.0.3",
"@skyra/reddit-helpers": "^1.2.0",
"@skyra/safe-fetch": "^1.1.3",
"@skyra/shared-http-pieces": "^1.2.2",
"@skyra/start-banner": "^2.0.1",
"@skyra/twitch-helpers": "^2.0.1",
"@skyra/weather-helpers": "^1.1.0",
"@vladfrangu/async_event_emitter": "^2.4.6",
"canvas-constructor": "^7.0.2",
"culori": "^4.0.1",
"discord-api-types": "^0.37.100",
"gradient-string": "^3.0.0",
"he": "^1.2.0",
"ioredis": "^5.4.1",
"jsbd": "^0.0.11",
"luxon": "^3.5.0",
"nanoid": "^5.0.7",
"tslib": "^2.8.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@types/culori": "^2.1.1",
"@types/gradient-string": "^1.1.6",
"@types/he": "^1.2.3",
"@types/luxon": "^3.4.2",
"@types/node": "^22.8.6",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"@vitest/coverage-v8": "^2.1.3",
"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.2.10",
"prettier": "^3.3.3",
"prisma": "^5.21.1",
"rimraf": "^6.0.1",
"tar": "^7.4.3",
"typescript": "~5.4.5",
"vitest": "^2.1.3"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"discord-api-types": "^0.37.100",
"minimist": "^1.2.8"
},
"engines": {
"node": ">=22.11.0"
},
"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",
"eslintConfig": {
"extends": "@sapphire",
"rules": {
"@typescript-eslint/no-base-to-string": "off"
}
},
"packageManager": "yarn@4.5.1",
"volta": {
"node": "22.11.0"
}
}