-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.91 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.91 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "uncivserver.xyz",
"version": "4.55.0",
"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": {
"dev": "bun --watch src",
"start": "bun src",
"lint": "eslint .",
"format": "prettier --write '**/?*.*'",
"wc": "find src tests -type f -exec wc {} +",
"build": "bun scripts/build.bun.sh"
},
"dependencies": {
"@discordjs/rest": "^2.6.0",
"@elysiajs/jwt": "^1.4.0",
"@elysiajs/static": "^1.4.7",
"@mongodb-js/zstd": "^7.0.0",
"arktype": "^2.1.29",
"bytes": "^3.1.2",
"cache-control-parser": "^2.2.0",
"date-fns": "^4.1.0",
"discord-api-types": "^0.38.38",
"elysia": "^1.4.25",
"lru-cache": "^11.2.6",
"mongoose": "^9.2.1",
"node-cache": "^5.1.2",
"openskill": "^4.1.0",
"randomcryp": "^2.1.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-icons": "^5.5.0"
},
"devDependencies": {
"@11ty/eleventy": "^3.1.2",
"@eslint/js": "^10.0.1",
"@types/bun": "^1.3.9",
"@types/bytes": "^3.1.5",
"@types/react-dom": "^19.2.3",
"axios": "^1.13.5",
"eslint": "^10.0.0",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"jiti": "^2.6.1",
"prettier": "^3.8.1",
"prettier-plugin-jinja-template": "^2.1.0",
"prettier-plugin-toml": "^2.0.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"trustedDependencies": [
"@mongodb-js/zstd"
]
}