-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.54 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.54 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
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "xiveventbuddy",
"version": "2.0.0",
"description": "A user friendly first discord bot to host your XIV events.",
"author": "Jeroen Claassens <support@favware.tech>",
"license": "Apache-2.0",
"module": "dist/xiveventbuddy.js",
"private": true,
"type": "module",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js",
"#utils/*": "./dist/lib/util/*.js",
"#lib/env": "./dist/lib/env/index.js"
},
"scripts": {
"start": "node --preserve-symlinks --enable-source-maps dist/xiveventbuddy.js",
"lint": "eslint --fix",
"format": "prettier --write .",
"prisma:generate": "prisma generate",
"build": "tsup",
"watch": "tsup --watch",
"clean": "rimraf dist/",
"typecheck": "tsc -b src",
"dev": "tsup --watch --onSuccess \"yarn start\""
},
"prisma": {
"seed": "tsx prisma/initial-data-seed.ts"
},
"dependencies": {
"@prisma/client": "^6.19.2",
"@sapphire/decorators": "^6.2.0",
"@sapphire/discord.js-utilities": "^7.3.3",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "^5.5.0",
"@sapphire/plugin-i18next": "^8.0.0",
"@sapphire/plugin-logger": "^4.1.0",
"@sapphire/plugin-scheduled-tasks": "^10.0.4",
"@sapphire/utilities": "^3.18.2",
"@skyra/env-utilities": "^2.0.1",
"@skyra/jaro-winkler": "^1.1.1",
"@skyra/start-banner": "^2.0.2",
"bufferutil": "^4.1.0",
"bullmq": "^5.71.0",
"colorette": "^2.0.20",
"date-fns": "^4.1.0",
"discord.js": "^14.25.1",
"figlet": "^1.11.0",
"gradient-string": "^3.0.0",
"utf-8-validate": "^6.0.6",
"ws": "^8.19.0",
"zlib-sync": "^0.1.10"
},
"devDependencies": {
"@commitlint/cli": "^20.4.4",
"@commitlint/config-conventional": "^20.4.4",
"@favware/discord-application-emojis-manager": "^1.1.1",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.3",
"@swc/core": "^1.15.18",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "^24.12.0",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"eslint": "^10.0.3",
"eslint-config-neon": "^0.3.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"lint-staged": "^16.4.0",
"prettier": "^3.8.1",
"prettier-plugin-prisma": "^5.0.0",
"prisma": "^6.19.2",
"rimraf": "^6.1.3",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "~5.4.5"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix"
},
"packageManager": "yarn@4.12.0"
}