-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.37 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.37 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
{
"name": "ctfbot",
"version": "0.1.0",
"description": "Discord bot for managing Capture The Flag (CTF) competitions with event scheduling, channel management, and participant tracking",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"dev": "node --watch src/index.js",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write \"src/**/*.js\"",
"format:check": "prettier --check \"src/**/*.js\"",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"discord",
"bot",
"ctf",
"capture-the-flag",
"cybersecurity",
"discord-bot",
"sapphire",
"discord.js"
],
"author": "UCS ITS",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ucsits/ctfbot.git"
},
"bugs": {
"url": "https://github.com/ucsits/ctfbot/issues"
},
"homepage": "https://github.com/ucsits/ctfbot#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@sapphire/framework": "^5.3.7",
"better-sqlite3": "^12.4.1",
"discord.js": "14.x",
"dotenv": "^17.2.3",
"luxon": "^3.7.2"
},
"pnpm": {
"onlyBuiltDependencies": [
"better-sqlite3"
]
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^8.57.1",
"vitest": "^4.0.16"
}
}