-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 913 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 913 Bytes
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
{
"name": "wolffy-discord-alert-bot",
"author": "Matthew Wolff",
"license": "ISC",
"version": "1.0.0",
"description": "A simple discord bot for alerting users about presence updates",
"main": "main.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"build": "tsc",
"prestart": "npm run build",
"start": "node build/main.js"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testMatch": [
"**/__tests__/**/*.test.ts"
]
},
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.3.2",
"typescript-logging": "^2.2.0",
"typescript-logging-log4ts-style": "^2.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.15.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.8.3"
}
}