-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.3 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
{
"name": "archangel",
"version": "5.0.0",
"description": "Private bot for PopulousGaming",
"author": "Jeroen Claassens <support@favware.tech>",
"license": "Apache-2.0",
"main": "dist/ArchAngel.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 --enable-source-maps dist/ArchAngel.js",
"lint": "eslint src --ext ts --fix",
"prettier": "prettier --ignore-path=.prettierignore",
"format": "prettier --write --loglevel=warn \"src/**/*.ts\"",
"build": "tsup",
"watch": "tsup --watch",
"clean": "rimraf dist/",
"typecheck": "tsc -b src",
"dev": "tsup --watch --onSuccess \"yarn start\""
},
"dependencies": {
"@sapphire/decorators": "^6.1.1",
"@sapphire/discord-utilities": "^3.4.4",
"@sapphire/discord.js-utilities": "^7.3.2",
"@sapphire/fetch": "^3.0.5",
"@sapphire/framework": "^5.3.2",
"@sapphire/plugin-logger": "^4.0.2",
"@sapphire/time-utilities": "^1.7.14",
"@sapphire/utilities": "^3.18.2",
"@skyra/env-utilities": "^1.3.0",
"bufferutil": "^4.0.9",
"colorette": "^2.0.20",
"discord.js": "^14.18.0",
"marked": "^15.0.7",
"marked-smartypants": "^1.1.9",
"marked-xhtml": "^1.0.12",
"node-html-to-image": "^5.0.0",
"tslib": "^2.8.1",
"utf-8-validate": "^6.0.5",
"ws": "^8.18.1",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@skyra/discord-components-core": "^3.6.1",
"@types/node": "^22.13.8",
"@types/ws": "^8.5.14",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.2",
"rimraf": "^6.0.1",
"tsup": "^8.4.0",
"typescript": "^5.6.3"
},
"resolutions": {
"ansi-regex": "^5.0.1",
"minimist": "^1.2.8"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.24.2"
},
"eslintConfig": {
"extends": "@sapphire"
},
"packageManager": "yarn@4.7.0",
"volta": {
"node": "22.14.0"
}
}