-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.09 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.09 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "hammertimebot",
"version": "1.0.0",
"description": "Discord bot version of https://hammertime.cyou using slash commands",
"author": "DJDavid98 <djdavid98@protonmail.com> (https://github.com/DJDavid98)",
"private": true,
"type": "module",
"scripts": {
"lint": "eslint \"{src,utils}/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"generate-faq": "tsx ./utils/generate-faq",
"build": "npm run generate-faq && tsc",
"build:clean": "rimraf build",
"start": "node --enable-source-maps ./build/src/index.js",
"generate-translation-credits": "tsx ./utils/translation-credits",
"start:dev": "npm run build:clean && npm run build && npm run start",
"test": "vitest",
"test:watch": "vitest --watch",
"prepare": "ts-patch install"
},
"dependencies": {
"@date-fns/tz": "^1.2.0",
"@discordjs/rest": "^2.6.1",
"bufferutil": "^4.0.9",
"concurrently": "^9.2.1",
"date-fns": "^4.1.0",
"discord-api-types": "^0.38.43",
"discord.js": "^14.26.2",
"dotenv": "^17.2.3",
"i18next": "^25.8.6",
"i18next-fs-backend": "^2.6.1",
"js-levenshtein": "^1.1.6",
"pm2": "^6.0.13",
"rimraf": "^6.0.1",
"shell-escape": "^0.2.0",
"string-progressbar": "^1.0.4",
"tslib": "^2.8.1",
"utf-8-validate": "^6.0.5"
},
"devDependencies": {
"@eslint/compat": "^2.0.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.37.0",
"@types/js-levenshtein": "^1.1.3",
"@types/node": "^24.10.13",
"@types/shell-escape": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"eslint": "^9.37.0",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-i18n-validator": "^0.1.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.3.0",
"jsdom": "^28.0.0",
"nodemon": "^3.1.10",
"rollup": "^4.52.4",
"ts-patch": "^3.3.0",
"tsx": "^4.20.6",
"typescript": "~5.9.3",
"typia": "^11.0.3",
"vite": "^7.3.2",
"vitest": "^4.0.12"
},
"nodemonConfig": {
"delay": 1000
},
"engines": {
"node": "24.x"
}
}