-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.71 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
61
62
63
{
"name": "saber-alter",
"version": "1.0.0",
"description": "My personal Discord bot.",
"main": "src/index.ts",
"scripts": {
"dev": "ts-node-dev -P tsconfig.json --respawn --transpile-only -r dotenv/config -- src/index.ts",
"lint": "eslint --ignore-path .gitignore --fix ./**/*.ts",
"build": "tsc -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Renari/saber-alter.git"
},
"author": "Arimil",
"license": "MIT",
"bugs": {
"url": "https://github.com/Renari/saber-alter/issues"
},
"homepage": "https://github.com/Renari/saber-alter#readme",
"dependencies": {
"@discordjs/builders": "^1.9.0",
"@discordjs/rest": "^2.2.0",
"async-mutex": "^0.5.0",
"axios": "^1.7.7",
"better-sqlite3": "^11.5.0",
"dateformat": "^5.0.3",
"discord.js": "^14.16.3",
"erlpack": "^0.1.4",
"gm": "^1.25.0",
"node-cron": "^3.0.2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.11",
"@types/dateformat": "^5.0.2",
"@types/gm": "^1.25.4",
"@types/nedb": "^1.8.16",
"@types/node": "^22.9.0",
"@types/node-cron": "^3.0.10",
"@types/ws": "^8.5.13",
"@types/xml2js": "^0.4.14",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"dotenv": "^16.4.5",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --ignore-path .gitignore --fix ",
"git add"
]
}
}