-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.94 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.94 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
91
92
93
94
95
96
97
98
{
"name": "dragonite",
"version": "1.0.0",
"description": "A Pokémon information Discord bot built around Discord Interactions.",
"author": "Jeroen Claassens <support@favware.tech>",
"license": "Apache-2.0",
"module": "dist/dragonite.js",
"private": true,
"type": "module",
"imports": {
"#lib/*": "./dist/lib/*.js",
"#root/*": "./dist/*.js",
"#utils/*": "./dist/lib/util/*.js",
"#gql/*": "./dist/lib/gql/*.js",
"#lib/env": "./dist/lib/env/index.js"
},
"scripts": {
"start": "node --preserve-symlinks --enable-source-maps dist/dragonite.js",
"lint": "eslint src --ext ts --fix",
"prettier": "prettier --ignore-path=.prettierignore",
"format": "prettier --write .",
"build": "tsdown",
"watch": "tsdown --watch",
"clean": "rimraf dist/",
"typecheck": "tsc -b src",
"dev": "tsdown --watch --onSuccess \"yarn start\""
},
"dependencies": {
"@discordjs/builders": "^1.13.0",
"@favware/graphql-pokemon": "^8.7.3",
"@influxdata/influxdb-client": "^1.35.0",
"@influxdata/influxdb-client-apis": "^1.35.0",
"@sapphire/decorators": "^6.2.0",
"@sapphire/discord.js-utilities": "^7.3.3",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "^5.4.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",
"binarytf": "^2.1.3",
"bufferutil": "^4.0.9",
"colorette": "^2.0.20",
"discord.js": "^14.25.1",
"figlet": "^1.9.4",
"gradient-string": "^3.0.0",
"ioredis": "^5.8.2",
"utf-8-validate": "^6.0.5",
"ws": "^8.18.3",
"zlib-sync": "^0.1.10"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@sapphire/eslint-config": "^5.0.6",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.3",
"@swc/core": "^1.15.3",
"@types/figlet": "^1.7.0",
"@types/gradient-string": "^1.1.6",
"@types/node": "24.10.1",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"lint-staged": "^16.2.7",
"prettier": "^3.7.1",
"rimraf": "^6.1.2",
"tsdown": "^0.16.8",
"typescript": "~5.9.3"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "@sapphire",
"rules": {
"@typescript-eslint/unbound-method": "off"
}
},
"lint-staged": {
"*": "prettier --ignore-unknown --write",
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"packageManager": "yarn@4.12.0"
}