-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
63 lines (63 loc) · 1.63 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
61
62
63
{
"name": "uncivserver.xyz",
"version": "4.21.4",
"description": "An Open Source, Free to Play, Unciv Multiplayer Server written in Javascript",
"author": "Md. Touhidur Rahman",
"license": "BSD-3-Clause",
"repository": "touhidurrr/UncivServer.xyz",
"homepage": "https://github.com/touhidurrr/UncivServer.xyz#readme",
"bugs": {
"url": "https://github.com/touhidurrr/UncivServer.xyz/issues"
},
"keywords": [
"Unciv",
"Multiplayer",
"Server",
"Discord",
"Turn",
"Notifications",
"Bun",
"Elysia"
],
"type": "module",
"main": "src/index.ts",
"module": "src/index.ts",
"scripts": {
"test": "bun test",
"dev": "bun --watch src/index.ts",
"start": "bun src/index.ts",
"lint": "tsc --noEmit",
"format": "prettier --write '**/?*.*'",
"wc": "find src tests -type f -exec wc {} +",
"build": "bun scripts/build.bun.sh"
},
"dependencies": {
"@discordjs/rest": "^2.4.2",
"@elysiajs/bearer": "^1.2.0",
"@elysiajs/static": "^1.2.0",
"@mongodb-js/zstd": "^2.0.0",
"bytes": "^3.1.2",
"cache-control-parser": "^2.0.6",
"date-fns": "^4.1.0",
"discord-api-types": "^0.37.115",
"elysia": "^1.2.9",
"ioredis": "^5.4.2",
"lru-cache": "^11.0.2",
"mongoose": "^8.9.3",
"node-cache": "^5.1.2",
"random": "^5.1.1"
},
"devDependencies": {
"@elysiajs/eden": "^1.2.0",
"@elysiajs/swagger": "^1.2.0",
"@types/bun": "^1.1.14",
"@types/bytes": "^3.1.5",
"@types/showdown": "^2.0.6",
"prettier": "^3.4.2",
"showdown": "^2.1.0",
"typescript": "^5.7.2"
},
"trustedDependencies": [
"@mongodb-js/zstd"
]
}