-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.54 KB
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
{
"name": "itsmybot",
"version": "3.11.0",
"description": "",
"main": "build/index.js",
"private": true,
"workspaces": [
"build/addons/*",
"src/addons/*"
],
"scripts": {
"make:addon": "node ./build/core/tools/makeAddon.js",
"tools:translate": "node --env-file=.env ./build/core/tools/translate/index.js",
"build:clean": "rm -rf ./build",
"build:itsmybot": "tsc --project tsconfig.json && tsc-alias -p tsconfig.json",
"build:copy": "cpy \"src/**/*.{yml,json}\" \"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/index.js"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/itsme-to/ItsMyBot"
},
"author": "@itsme.to",
"license": "ISC",
"bugs": {
"url": "https://github.com/itsme-to/ItsMyBot/issues"
},
"devDependencies": {
"@types/inquirer": "^9.0.9",
"@types/node": "^22.10.2",
"cpy-cli": "^5.0.0",
"inquirer": "^9.2.23",
"reflect-metadata": "^0.2.2",
"ts-node": "^10.9.2",
"tsc-alias": "^1.8.10",
"typescript": "^5.4.5"
},
"dependencies": {
"chalk": "^5.4.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.15.1",
"discord.js": "^14.26.0",
"filtrex": "^3.1.0",
"mariadb": "^3.4.0",
"mysql2": "^3.12.0",
"sequelize": "^6.37.5",
"sequelize-typescript": "^2.1.6",
"sqlite3": "^6.0.1",
"yaml": "^2.7.0"
}
}