-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.19 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
{
"name": "mc-chat-parser",
"version": "1.3.1",
"description": "App that follows Minecraft logs and passes chat messages between Minecraft and Discord",
"keywords": ["minecraft", "discord", "chat"],
"main": "src/app.ts",
"type": "module",
"scripts": {
"start": "node dist/app.js",
"dev": "npx tsx src/app.ts",
"build": "tsc --build --clean && tsc",
"lint": "./node_modules/.bin/eslint ./src ./test --fix --ext .ts",
"test": "node --import tsx --test test/**.test.ts"
},
"author": "Kartul",
"contributors": [
{
"name": "Jaak Kütt",
"email": "[email protected]",
"url": "https://jaak.kytt.ee/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/KartulUdus/mc-chat-parser.git"
},
"bugs": {
"url": "https://github.com/KartulUdus/issues"
},
"license": "ISC",
"dependencies": {
"@logdna/tail-file": "^3.0.1",
"axios": "1.6.0",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"rcon-client": "^4.2.3"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
}
}