tempest.games 0.2.62 → 0.2.64
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/app/assets/index-MKr2m6x6.js +109 -0
- package/app/index.html +1 -1
- package/bin/backend.bun.js +201 -202
- package/bin/backend.worker.game.bun.js +10 -10
- package/bin/backend.worker.tribunal.bun.js +77 -76
- package/bin/frontend.bun.js +36 -35
- package/bin/setup-db.bun.js +472 -359
- package/package.json +22 -21
- package/app/assets/index-x5An0S0o.js +0 -108
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tempest.games",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.64",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -27,50 +27,51 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@floating-ui/react": "0.27.16",
|
|
29
29
|
"@js-temporal/polyfill": "0.5.1",
|
|
30
|
-
"@react-email/components": "0.5.
|
|
30
|
+
"@react-email/components": "0.5.7",
|
|
31
31
|
"@t3-oss/env-core": "0.13.8",
|
|
32
32
|
"@trpc/client": "11.6.0",
|
|
33
33
|
"@trpc/server": "11.6.0",
|
|
34
|
-
"arktype": "2.1.
|
|
34
|
+
"arktype": "2.1.23",
|
|
35
35
|
"cron": "4.3.3",
|
|
36
|
-
"drizzle-orm": "0.44.
|
|
37
|
-
"motion": "12.23.
|
|
36
|
+
"drizzle-orm": "0.44.6",
|
|
37
|
+
"motion": "12.23.24",
|
|
38
38
|
"nanoid": "5.1.6",
|
|
39
|
-
"openai": "
|
|
39
|
+
"openai": "6.4.0",
|
|
40
40
|
"postgres": "3.4.7",
|
|
41
|
-
"react": "19.
|
|
42
|
-
"react-dom": "19.
|
|
43
|
-
"react-email": "4.
|
|
44
|
-
"resend": "6.1.
|
|
41
|
+
"react": "19.2.0",
|
|
42
|
+
"react-dom": "19.2.0",
|
|
43
|
+
"react-email": "4.3.1",
|
|
44
|
+
"resend": "6.1.3",
|
|
45
45
|
"safegen": "0.7.0",
|
|
46
46
|
"socket.io": "4.8.1",
|
|
47
47
|
"socket.io-client": "4.8.1",
|
|
48
|
-
"atom.io": "0.42.2",
|
|
49
48
|
"safedeposit": "0.1.2",
|
|
49
|
+
"atom.io": "0.43.1",
|
|
50
50
|
"treetrunks": "0.1.5"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@react-email/components": "0.5.
|
|
54
|
-
"@
|
|
53
|
+
"@react-email/components": "0.5.7",
|
|
54
|
+
"@react-email/preview-server": "4.3.1",
|
|
55
|
+
"@types/bun": "npm:bun-types@1.3.0",
|
|
55
56
|
"@types/cors": "2.8.19",
|
|
56
|
-
"@types/node": "24.
|
|
57
|
-
"@types/react": "19.
|
|
58
|
-
"@types/react-dom": "19.
|
|
57
|
+
"@types/node": "24.8.1",
|
|
58
|
+
"@types/react": "19.2.2",
|
|
59
|
+
"@types/react-dom": "19.2.2",
|
|
59
60
|
"@vitejs/plugin-react": "npm:@vitejs/plugin-react-swc@4.1.0",
|
|
60
61
|
"concurrently": "9.2.1",
|
|
61
62
|
"cors": "2.8.5",
|
|
62
|
-
"cross-env": "10.
|
|
63
|
-
"dotenv": "17.2.
|
|
63
|
+
"cross-env": "10.1.0",
|
|
64
|
+
"dotenv": "17.2.3",
|
|
64
65
|
"dotenv-cli": "10.0.0",
|
|
65
66
|
"drizzle-kit": "0.31.5",
|
|
66
|
-
"eslint": "9.
|
|
67
|
+
"eslint": "9.37.0",
|
|
67
68
|
"globals": "16.4.0",
|
|
68
69
|
"rimraf": "6.0.1",
|
|
69
70
|
"sass-embedded": "1.93.2",
|
|
70
|
-
"vite": "7.1.
|
|
71
|
+
"vite": "7.1.10",
|
|
71
72
|
"vite-tsconfig-paths": "5.1.4",
|
|
72
73
|
"vitest": "3.2.4",
|
|
73
|
-
"flightdeck": "0.2.
|
|
74
|
+
"flightdeck": "0.2.86",
|
|
74
75
|
"varmint": "0.5.6"
|
|
75
76
|
},
|
|
76
77
|
"scripts": {
|