-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
53 lines (53 loc) · 1.48 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
{
"name": "itsmybot",
"version": "2.1.0",
"description": "",
"main": "build/core/index.js",
"scripts": {
"make:plugin": "node ./build/core/tools/makePlugin.js",
"build:clean": "rm -rf ./build",
"build:itsmybot": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"build:copy": "cpy 'src/**/*.yml' 'build/' --parents",
"build:success": "echo '[ItsMyBot] Build completed successfully!'",
"build": "npm run build:clean && npm run build:itsmybot && npm run build:copy && npm run build:success",
"start": "node ./build/core/index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": ""
},
"author": "@itsme.to",
"license": "ISC",
"bugs": {
"url": "https://gg.itsme.to"
},
"devDependencies": {
"@inquirer/prompts": "^5.3.2",
"@types/node": "^20.14.2",
"@types/node-cron": "^3.0.11",
"@types/validator": "^13.11.10",
"cpy-cli": "^5.0.0",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.4.5"
},
"dependencies": {
"chalk": "^5.3.0",
"class-transformer": "^0.5.1",
"class-validator": "^0.14.1",
"discord-html-transcripts": "^3.2.0",
"discord.js": "^14.16.3",
"glob": "^10.4.1",
"mariadb": "^3.3.1",
"mysql2": "^3.10.0",
"node-cron": "^3.0.3",
"openai": "^4.49.1",
"sequelize": "^6.37.3",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^5.1.7",
"ts-mixer": "^6.0.4",
"yaml": "^2.4.5"
}
}