-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 1.23 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
{
"type": "module",
"scripts": {
"dev": "yarn build && yarn start",
"start": "node --es-module-specifier-resolution=node output/index.js",
"build": "swc src/ -d output",
"ts-check": "tsc --noEmit",
"format": "prettier --cache --write .",
"dc": "depcruise output --progress --config depgraph/visual.config.cjs -T flat | dot -Tsvg | tee depgraph/dist/dependency-cruiser-graph-flat-dot.svg | npx depcruise-wrap-stream-in-html > depgraph/dist/dependency-cruiser-graph-flat-dot.html",
"dcval": "depcruise output --progress --config depgraph/visual.config.cjs -T err-html -f depgraph/dist/dependency-report.html"
},
"dependencies": {
"@discordjs/builders": "^1.6.5",
"@discordx/pagination": "^3.4.1",
"@discordx/utilities": "^5.2.1",
"canvas": "2.10",
"discord.js": "^14.13.0",
"discordx": "^11.7.6",
"dotenv": "^16.3.1",
"properties-reader": "^2.3.0",
"random": "^4.1.0",
"string-progressbar": "^1.0.4"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.83",
"@swc/helpers": "^0.5.2",
"@types/node": "^20.5.9",
"@types/properties-reader": "^2.1.1",
"dependency-cruiser": "^13.1.5",
"prettier": "^3.0.3",
"typescript": "^5.2.2"
}
}