- Authentication middleware uses Zod - PhotonRegionId in config - DB key changes and additions - WebSocket for SignalR mock - Presence additions * Needs modification for playerIds (do not store `Profile` in a set, this will cause sync issues) - Profile settings - Profile Device Class - Zod properly checks for issuer in token - Room scene type bug - Setting key import started - Instancing changes - PlayerReporting API route - Deduplicated auth/connect/token - match/player/login begin - WebSocket hands off connection to SignalR handler
32 lines
1.3 KiB
JSON
32 lines
1.3 KiB
JSON
{
|
|
"tasks": {
|
|
"compile-win": "deno compile --include res --include src --target x86_64-pc-windows-msvc -o build/GalvanicCorrosion.exe -A src/main.ts",
|
|
"compile-linux": "deno compile --include res --include src --target x86_64-unknown-linux-gnu -o build/GalvanicCorrosion -A src/main.ts",
|
|
"cross-compile": "deno run compile-win && deno run compile-linux",
|
|
"dev": "deno run -A src/main.ts --dev"
|
|
},
|
|
"imports": {
|
|
"@gz/jwt": "jsr:@gz/jwt@^0.1.0",
|
|
"@proxnet/undead-logging": "jsr:@proxnet/undead-logging@^1.2.0",
|
|
"@std/assert": "jsr:@std/assert@1",
|
|
"@std/http": "jsr:@std/http@^1.0.13",
|
|
"@types/cookie-parser": "npm:@types/cookie-parser@^1.4.8",
|
|
"@types/express": "npm:@types/express@^5.0.0",
|
|
"@types/validator": "npm:@types/validator@^13.12.2",
|
|
"@types/ws": "npm:@types/ws@^8.18.0",
|
|
"cookie-parser": "npm:cookie-parser@^1.4.7",
|
|
"discord.js": "npm:discord.js@^14.16.3",
|
|
"express": "npm:express@^4.21.2",
|
|
"ioredis": "npm:ioredis@^5.5.0",
|
|
"validator": "npm:validator@^13.12.0",
|
|
"ws": "npm:ws@^8.18.1",
|
|
"zod": "npm:zod@^3.24.2"
|
|
},
|
|
"files": [],
|
|
"compilerOptions": {
|
|
"types": [
|
|
"./src/types/express.ts"
|
|
]
|
|
}
|
|
}
|