-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.92 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": "amethyst",
"version": "1.2.0",
"author": "Purple_Creativity",
"license": "MIT",
"description": "A discord bot written in Typescript, inspired by PB Kronos.",
"main": "./build/main.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/PurpleCreativity/Amethyst.git"
},
"bugs": {
"url": "https://github.com/PurpleCreativity/Amethyst/issues"
},
"keywords": ["discord", "bot", "typescript"],
"exports": {
".": "./build/main.js"
},
"scripts": {
"clean": "rmdir /s /q build",
"build": "tsc",
"dev": "npm run clean && npm run build && node . --dev",
"start": "npm run build && node .",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"organized-imports": "biome check --formatter-enabled=false --linter-enabled=false --organize-imports-enabled=true .",
"organized-imports:fix": "biome check --formatter-enabled=false --linter-enabled=false --organize-imports-enabled=true --write .",
"check": "biome check .",
"check:fix": "biome check --write ."
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bcrypt": "^5.0.2",
"@types/express": "^5.0.0",
"@types/node": "^22.13.0",
"typescript": "^5.7.3"
},
"dependencies": {
"@auth/express": "^0.8.4",
"@date-fns/tz": "^1.2.0",
"axios": "^1.7.7",
"bcrypt": "^5.1.1",
"bloxwrap": "^0.1.0",
"chalk": "^5.4.1",
"date-fns": "^4.1.0",
"discord.js": "^14.17.3",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"express-rate-limit": "^7.5.0",
"mariadb": "^3.4.0",
"socket.io": "^4.8.1",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=22"
}
}