Skip to content

Commit dfefb80

Browse files
chore: update deps
1 parent 02a9927 commit dfefb80

File tree

1 file changed

+140
-140
lines changed

1 file changed

+140
-140
lines changed

package.json

Lines changed: 140 additions & 140 deletions
Original file line numberDiff line numberDiff line change
@@ -1,141 +1,141 @@
11
{
2-
"name": "sudobot",
3-
"version": "9.0.0-alpha.1",
4-
"description": "A Discord bot for moderation purposes.",
5-
"author": {
6-
"name": "Ar Rakin",
7-
"email": "[email protected]",
8-
"url": "https://virtual-designer.github.io"
9-
},
10-
"main": "build/index.js",
11-
"license": "AGPL-3.0-or-later",
12-
"keywords": [
13-
"bot",
14-
"discord-bot",
15-
"moderation",
16-
"automoderation",
17-
"discord-moderation",
18-
"discord-moderation-bot",
19-
"discord-automoderation",
20-
"discord-automoderation-bot"
21-
],
22-
"homepage": "https://github.com/onesoft-sudo/sudobot",
23-
"icon": "https://res.cloudinary.com/rakinar2/image/upload/v1659628446/SudoBot-new_cvwphw.png",
24-
"readme": "https://github.com/onesoft-sudo/sudobot#readme",
25-
"repository": {
26-
"type": "git",
27-
"url": "https://github.com/onesoft-sudo/sudobot"
28-
},
29-
"bugs": {
30-
"url": "https://github.com/onesoft-sudo/sudobot/issues",
31-
"email": "[email protected]"
32-
},
33-
"_meta": {
34-
"release_codename": "Chocolate Cake",
35-
"release_short_codename": "Cake"
36-
},
37-
"scripts": {
38-
"start": "node build/main/typescript/index.js",
39-
"start:bun": "bun --tsconfig-override=tsconfig.bun.json src/bun.ts",
40-
"prepare": "husky",
41-
"dev": "bun run src/main/typescript/bun.ts",
42-
"start:blazew": "node build/out/main/typescript/bun.ts",
43-
"lint": "eslint src",
44-
"lint:fix": "eslint src --fix",
45-
"build": "tsc && mv build/out/src _build && rm -fr build/out && mv _build build/out",
46-
"start:prod": "pm2 start ./ecosystem.config.js",
47-
"deploy": "node scripts/deploy-commands.js",
48-
"gen:schema": "node scripts/generate-config-schema.js",
49-
"clean": "rm -frv build tsconfig.tsbuildinfo; make clean",
50-
"test": "vitest"
51-
},
52-
"_moduleAliases": {
53-
"@sudobot": "build/out",
54-
"@framework": "build/out/framework/typescript",
55-
"@main": "build/out/main/typescript",
56-
"@root": "."
57-
},
58-
"trustedDependencies": [
59-
"@prisma/client",
60-
"@prisma/engines",
61-
"@tensorflow/tfjs-node",
62-
"bcrypt",
63-
"core-js",
64-
"esbuild",
65-
"prisma",
66-
"sharp",
67-
"tesseract.js"
68-
],
69-
"dependencies": {
70-
"@google/generative-ai": "^0.3.0",
71-
"@prisma/client": "^5.11.0",
72-
"@tensorflow/tfjs-node": "^4.17.0",
73-
"archiver": "^7.0.1",
74-
"ascii-table3": "^0.8.2",
75-
"axios": "^1.6.7",
76-
"bcrypt": "^5.1.1",
77-
"chalk": "^4.1.2",
78-
"cors": "^2.8.5",
79-
"date-fns": "^2.30.0",
80-
"deepmerge": "^4.3.1",
81-
"discord-api-types": "^0.37.83",
82-
"discord.js": "^14.15.2",
83-
"dot-object": "^2.1.4",
84-
"dotenv": "^16.3.1",
85-
"express": "^4.18.2",
86-
"express-rate-limit": "^6.9.0",
87-
"figlet": "^1.7.0",
88-
"googleapis": "^126.0.1",
89-
"jpeg-js": "^0.4.4",
90-
"json5": "^2.2.3",
91-
"jsonwebtoken": "^9.0.2",
92-
"module-alias": "^2.2.3",
93-
"nsfwjs": "^3.0.0",
94-
"pm2": "^5.3.1",
95-
"reflect-metadata": "^0.1.13",
96-
"semver": "^7.5.4",
97-
"sharp": "^0.33.2",
98-
"socket.io": "^4.7.2",
99-
"tar": "^6.2.1",
100-
"tesseract.js": "^5.0.4",
101-
"tslib": "^2.6.2",
102-
"undici": "^5.23.0",
103-
"uuid": "^9.0.0",
104-
"zod": "^3.21.4"
105-
},
106-
"devDependencies": {
107-
"@commitlint/cli": "^17.6.6",
108-
"@commitlint/config-conventional": "^17.6.6",
109-
"@faker-js/faker": "^8.4.1",
110-
"@onesoftnet/pm2-config": "^0.0.7",
111-
"@types/archiver": "^6.0.2",
112-
"@types/bcrypt": "^5.0.0",
113-
"@types/bun": "latest",
114-
"@types/cors": "^2.8.13",
115-
"@types/dot-object": "^2.1.2",
116-
"@types/express": "^4.17.17",
117-
"@types/figlet": "^1.5.8",
118-
"@types/jsonwebtoken": "^9.0.2",
119-
"@types/module-alias": "^2.0.2",
120-
"@types/node": "^20.4.0",
121-
"@types/semver": "^7.5.4",
122-
"@types/tar": "^6.1.11",
123-
"@types/uuid": "^9.0.2",
124-
"typescript-eslint": "^7.7.0",
125-
"@typescript-eslint/eslint-plugin": "^7.7.0",
126-
"@typescript-eslint/parser": "^7.7.0",
127-
"@vitest/coverage-v8": "^1.3.1",
128-
"eslint": "^8.57.0",
129-
"husky": "latest",
130-
"prisma": "^5.11.0",
131-
"typescript": "^5.4.3",
132-
"vitest": "^1.3.1",
133-
"zod-to-json-schema": "^3.22.5",
134-
"prettier": "^3.2.5",
135-
"blazebuild": "file:./blazebuild"
136-
},
137-
"peerDependencies": {},
138-
"optionalDependencies": {
139-
"openai": "^4.26.0"
140-
}
141-
}
2+
"name": "sudobot",
3+
"version": "9.0.0-alpha.1",
4+
"description": "A Discord bot for moderation purposes.",
5+
"author": {
6+
"name": "Ar Rakin",
7+
"email": "[email protected]",
8+
"url": "https://virtual-designer.github.io"
9+
},
10+
"main": "build/index.js",
11+
"license": "AGPL-3.0-or-later",
12+
"keywords": [
13+
"bot",
14+
"discord-bot",
15+
"moderation",
16+
"automoderation",
17+
"discord-moderation",
18+
"discord-moderation-bot",
19+
"discord-automoderation",
20+
"discord-automoderation-bot"
21+
],
22+
"homepage": "https://github.com/onesoft-sudo/sudobot",
23+
"icon": "https://res.cloudinary.com/rakinar2/image/upload/v1659628446/SudoBot-new_cvwphw.png",
24+
"readme": "https://github.com/onesoft-sudo/sudobot#readme",
25+
"repository": {
26+
"type": "git",
27+
"url": "https://github.com/onesoft-sudo/sudobot"
28+
},
29+
"bugs": {
30+
"url": "https://github.com/onesoft-sudo/sudobot/issues",
31+
"email": "[email protected]"
32+
},
33+
"_meta": {
34+
"release_codename": "Chocolate Cake",
35+
"release_short_codename": "Cake"
36+
},
37+
"scripts": {
38+
"start": "node build/out/main/typescript/index.js",
39+
"start:bun": "bun --tsconfig-override=tsconfig.bun.json src/bun.ts",
40+
"prepare": "husky",
41+
"dev": "bun run src/main/typescript/bun.ts",
42+
"start:blazew": "node build/out/main/typescript/index.js",
43+
"lint": "eslint src",
44+
"lint:fix": "eslint src --fix",
45+
"build": "tsc && mv build/out/src _build && rm -fr build/out && mv _build build/out",
46+
"start:prod": "pm2 start ./ecosystem.config.js",
47+
"deploy": "node scripts/deploy-commands.js",
48+
"gen:schema": "node scripts/generate-config-schema.js",
49+
"clean": "rm -frv build tsconfig.tsbuildinfo; make clean",
50+
"test": "vitest"
51+
},
52+
"_moduleAliases": {
53+
"@sudobot": "build/out",
54+
"@framework": "build/out/framework/typescript",
55+
"@main": "build/out/main/typescript",
56+
"@root": "."
57+
},
58+
"trustedDependencies": [
59+
"@prisma/client",
60+
"@prisma/engines",
61+
"@tensorflow/tfjs-node",
62+
"bcrypt",
63+
"core-js",
64+
"esbuild",
65+
"prisma",
66+
"sharp",
67+
"tesseract.js"
68+
],
69+
"dependencies": {
70+
"@google/generative-ai": "^0.3.0",
71+
"@prisma/client": "^5.11.0",
72+
"@tensorflow/tfjs-node": "^4.17.0",
73+
"archiver": "^7.0.1",
74+
"ascii-table3": "^0.8.2",
75+
"axios": "^1.6.7",
76+
"bcrypt": "^5.1.1",
77+
"canvas": "^2.11.2",
78+
"chalk": "^4.1.2",
79+
"cors": "^2.8.5",
80+
"date-fns": "^2.30.0",
81+
"deepmerge": "^4.3.1",
82+
"discord.js": "^14.15.2",
83+
"dot-object": "^2.1.4",
84+
"dotenv": "^16.3.1",
85+
"express": "^4.18.2",
86+
"express-rate-limit": "^6.9.0",
87+
"figlet": "^1.7.0",
88+
"googleapis": "^126.0.1",
89+
"jpeg-js": "^0.4.4",
90+
"json5": "^2.2.3",
91+
"jsonwebtoken": "^9.0.1",
92+
"module-alias": "^2.2.3",
93+
"nsfwjs": "^3.0.0",
94+
"pm2": "^5.3.1",
95+
"reflect-metadata": "^0.1.13",
96+
"semver": "^7.5.4",
97+
"sharp": "^0.33.2",
98+
"socket.io": "^4.7.2",
99+
"tar": "^6.2.1",
100+
"tesseract.js": "^5.0.4",
101+
"tslib": "^2.6.2",
102+
"undici": "^5.23.0",
103+
"uuid": "^9.0.0",
104+
"zod": "^3.21.4"
105+
},
106+
"devDependencies": {
107+
"@commitlint/cli": "^17.6.6",
108+
"@commitlint/config-conventional": "^17.6.6",
109+
"@faker-js/faker": "^8.4.1",
110+
"@onesoftnet/pm2-config": "^0.0.7",
111+
"@types/archiver": "^6.0.2",
112+
"@types/bcrypt": "^5.0.0",
113+
"@types/bun": "latest",
114+
"@types/cors": "^2.8.13",
115+
"@types/dot-object": "^2.1.2",
116+
"@types/express": "^4.17.17",
117+
"@types/figlet": "^1.5.8",
118+
"@types/jsonwebtoken": "^9.0.2",
119+
"@types/module-alias": "^2.0.2",
120+
"@types/node": "^20.4.0",
121+
"@types/semver": "^7.5.4",
122+
"@types/tar": "^6.1.11",
123+
"@types/uuid": "^9.0.2",
124+
"typescript-eslint": "^7.7.0",
125+
"@typescript-eslint/eslint-plugin": "^7.7.0",
126+
"@typescript-eslint/parser": "^7.7.0",
127+
"@vitest/coverage-v8": "^1.3.1",
128+
"eslint": "^8.57.0",
129+
"husky": "latest",
130+
"prisma": "^5.11.0",
131+
"typescript": "^5.4.3",
132+
"vitest": "^1.3.1",
133+
"zod-to-json-schema": "^3.22.5",
134+
"prettier": "^3.2.5",
135+
"blazebuild": "file:./blazebuild"
136+
},
137+
"peerDependencies": {},
138+
"optionalDependencies": {
139+
"openai": "^4.26.0"
140+
}
141+
}

0 commit comments

Comments
 (0)