-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
104 lines (104 loc) · 3.13 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
{
"name": "gamerbot",
"version": "2.12.1",
"license": "MIT",
"packageManager": "yarn@3.2.3",
"private": true,
"workspaces": [
"types"
],
"scripts": {
"compile": "bun build --compile --minify --target=bun --outfile=gamerbot ./lib/index.ts",
"start": "NODE_ENV=production bun ./lib/index.ts",
"dev": "NODE_ENV=development bun --watch ./lib/index.ts",
"db": "docker-compose up db --no-log-prefix",
"git:tag": "git tag v$(echo $(bun version-only)) -m \"v$(echo $(bun version-only))\"",
"precommit": "bun build && concurrently 'bun docgen' 'bun types'",
"types": "tsc && sed -i -e 's|\"lib|\"gamerbot/lib|g' -e 's|\"scripts|\"gamerbot/scripts|g' ./types/gamerbot.d.ts",
"docgen": "bun ./scripts/docgen.ts",
"publish": "bun ./scripts/publish.ts",
"release": "bun ./scripts/release.ts",
"version-only": "bun ./scripts/version.ts --version-only"
},
"standard": {
"engine": "ts-standard"
},
"ts-standard": {
"project": "./tsconfig.json"
},
"resolutions": {
"node-fetch": "^2.6.7",
"json5": "^1.0.2",
"http-cache-semantics": "^4.1.1",
"string-width": "^4"
},
"trustedDependencies": [
"zlib-sync",
"sharp"
],
"dependencies": {
"@calico32/hypixel-cache": "^1.0.0",
"@calico32/hypixel-types": "^0.1.1",
"@napi-rs/canvas": "^0.1.44",
"@prisma/client": "^5.8.1",
"@sentry/node": "^7.98.0",
"@t3-oss/env-core": "^0.8.0",
"@vvo/tzdb": "^6.125.0",
"@wiisportsresorts/cowsay": "^0.3.2",
"bad-words": "^3.0.4",
"cheerio": "^1.0.0-rc.12",
"common-tags": "^1.8.2",
"didyoumean": "^1.2.2",
"discord.js": "^14.14.1",
"elysia": "^0.6.24",
"emoji-regex": "^10.3.0",
"he": "^1.2.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"log4js": "^6.9.1",
"luxon": "^3.4.4",
"mathjax-full": "3.2.2",
"mathjs": "^11.12.0",
"nodemon": "^3.0.3",
"object-hash": "^3.0.0",
"piston-client": "^1.0.2",
"regenerator-runtime": "^0.14.1",
"sharp": "^0.33.2",
"source-map-support": "^0.5.21",
"string-length": "^6.0.0",
"tzdata": "^1.0.39",
"unicode": "^14.0.0",
"zlib-sync": "^0.1.9",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/bad-words": "^3.0.3",
"@types/bun": "^1.0.4",
"@types/common-tags": "^1.8.4",
"@types/didyoumean": "^1.2.2",
"@types/dts-bundle": "^0.0.35",
"@types/he": "^1.2.3",
"@types/js-yaml": "^4.0.9",
"@types/lodash": "^4.14.202",
"@types/luxon": "^3.4.2",
"@types/object-hash": "^3.0.6",
"@types/prettier": "^3.0.0",
"@types/sharp": "^0.32.0",
"@types/source-map-support": "^0.5.10",
"@types/yargs-parser": "^21.0.3",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"concurrently": "^8.2.2",
"discord-api-types": "0.37.67",
"eslint": "^8.56.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^3.2.4",
"prisma": "5.8.1",
"typescript": "^5.3.3",
"yargs-parser": "^21.1.1"
}
}