-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.72 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
{
"name": "discord-bot",
"author": "https://github.com/CuteNikki",
"repository": {
"type": "git",
"url": "git+https://github.com/CuteNikki/discord-bot.git"
},
"module": "./src/index.ts",
"dependencies": {
"@translate-tools/core": "^2.0.1",
"canvacord": "^6.0.2",
"cron": "^3.1.9",
"dayjs": "^1.11.13",
"discord-actions": "^2.3.13",
"discord-html-transcripts": "^3.2.0",
"discord-hybrid-sharding": "^2.2.3",
"discord.js": "^14.16.3",
"i18next": "^23.16.5",
"i18next-fs-backend": "^2.3.2",
"mediaplex": "^0.0.9",
"mongoose": "^8.8.0",
"ms": "^2.1.3",
"node-os-utils": "^1.3.7",
"pino": "^9.5.0",
"pino-pretty": "^12.1.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@types/bun": "^1.1.13",
"@types/ms": "^0.7.34",
"@types/node-os-utils": "^1.3.4",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
},
"bugs": {
"url": "https://github.com/CuteNikki/discord-bot/issues"
},
"description": "DiscordJS Bot written in TypeScript",
"homepage": "https://github.com/CuteNikki/discord-bot",
"license": "MIT",
"scripts": {
"dev": "bun run ./src/index.ts",
"deploy": "bun run ./src/structure/utilities/register.ts",
"start": "bun run ./dist/src/index.js",
"build": "rm -rf dist && bun tsc --build ./",
"pretty": "prettier --write \"./**/*.{js,jsx,mjs,cjs,ts,tsx,json}\"",
"lint": "eslint --ignore-pattern \"locales/*\"",
"dellog": "rm pino.log"
},
"prettier": {
"printWidth": 160,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "none"
},
"type": "module"
}