-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 878 Bytes
/
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
{
"name": "ls25-discord-bot",
"version": "0.1.8",
"description": "A simple discord bot for farming simulator 25",
"main": "source/Main.ts",
"scripts": {
"start": "npx tsc && node build/Main.js",
"start-only": "node build/Main.js",
"build": "npx tsc",
"schema": "npx json2ts -i source/Schema/ServerStats.json -o ./source/Schema/ServerStats.d.ts --unreachableDefinitions",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"ls25",
"fs25",
"farming",
"simulator",
"landwirtschafts",
"simulator"
],
"author": "Dennis Heinrich",
"license": "proprietary",
"devDependencies": {
"@types/node": "^22.9.0",
"json-schema-to-typescript": "^15.0.3",
"typescript": "^5.6.3"
},
"dependencies": {
"discord.js": "^14.16.3",
"fast-xml-parser": "^4.5.0",
"winston": "^3.17.0"
}
}