tempest.games 0.2.9 → 0.2.10
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 +6 -0
- package/app/assets/index-CGlDykR1.js +109 -0
- package/app/assets/index-ki_mruCb.css +1 -0
- package/app/index.html +2 -2
- package/bin/backend.bun.js +248 -244
- package/bin/backend.worker.tribunal.bun.js +56 -56
- package/bin/frontend.bun.js +19 -19
- package/bin/setup-db.bun.js +76 -71
- package/package.json +14 -14
- package/app/assets/index-B2F2ZwG-.css +0 -1
- package/app/assets/index-D-81-7hL.js +0 -109
package/bin/setup-db.bun.js
CHANGED
|
@@ -5,11 +5,11 @@
|
|
|
5
5
|
import * as os2 from "os";
|
|
6
6
|
import { resolve } from "path";
|
|
7
7
|
|
|
8
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
8
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/index.js
|
|
9
9
|
import os from "os";
|
|
10
10
|
import fs from "fs";
|
|
11
11
|
|
|
12
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
12
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/query.js
|
|
13
13
|
var originCache = new Map;
|
|
14
14
|
var originStackCache = new Map;
|
|
15
15
|
var originError = Symbol("OriginError");
|
|
@@ -147,7 +147,7 @@ function cachedError(xs) {
|
|
|
147
147
|
return originCache.get(xs);
|
|
148
148
|
}
|
|
149
149
|
|
|
150
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
150
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/errors.js
|
|
151
151
|
class PostgresError extends Error {
|
|
152
152
|
constructor(x) {
|
|
153
153
|
super(x.message);
|
|
@@ -190,7 +190,7 @@ function notSupported(x) {
|
|
|
190
190
|
return error;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
193
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/types.js
|
|
194
194
|
var types = {
|
|
195
195
|
string: {
|
|
196
196
|
to: 25,
|
|
@@ -471,14 +471,14 @@ fromKebab.column = { to: fromKebab };
|
|
|
471
471
|
var kebab = { ...toKebab };
|
|
472
472
|
kebab.column.to = fromKebab;
|
|
473
473
|
|
|
474
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
474
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/connection.js
|
|
475
475
|
import net from "net";
|
|
476
476
|
import tls from "tls";
|
|
477
477
|
import crypto from "crypto";
|
|
478
478
|
import Stream from "stream";
|
|
479
479
|
import { performance } from "perf_hooks";
|
|
480
480
|
|
|
481
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
481
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/result.js
|
|
482
482
|
class Result extends Array {
|
|
483
483
|
constructor() {
|
|
484
484
|
super();
|
|
@@ -495,7 +495,7 @@ class Result extends Array {
|
|
|
495
495
|
}
|
|
496
496
|
}
|
|
497
497
|
|
|
498
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
498
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/queue.js
|
|
499
499
|
var queue_default = Queue;
|
|
500
500
|
function Queue(initial = []) {
|
|
501
501
|
let xs = initial.slice();
|
|
@@ -522,7 +522,7 @@ function Queue(initial = []) {
|
|
|
522
522
|
};
|
|
523
523
|
}
|
|
524
524
|
|
|
525
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
525
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/bytes.js
|
|
526
526
|
var size = 256;
|
|
527
527
|
var buffer = Buffer.allocUnsafe(size);
|
|
528
528
|
var messages = "BCcDdEFfHPpQSX".split("").reduce((acc, x) => {
|
|
@@ -595,7 +595,7 @@ function reset() {
|
|
|
595
595
|
return b;
|
|
596
596
|
}
|
|
597
597
|
|
|
598
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
598
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/connection.js
|
|
599
599
|
var connection_default = Connection;
|
|
600
600
|
var uid = 1;
|
|
601
601
|
var Sync = bytes_default().S().end();
|
|
@@ -653,7 +653,7 @@ function Connection(options, queues = {}, { onopen = noop, onend = noop, onclose
|
|
|
653
653
|
queue: queues.closed,
|
|
654
654
|
idleTimer,
|
|
655
655
|
connect(query2) {
|
|
656
|
-
initial = query2
|
|
656
|
+
initial = query2;
|
|
657
657
|
reconnect();
|
|
658
658
|
},
|
|
659
659
|
terminate,
|
|
@@ -782,7 +782,7 @@ function Connection(options, queues = {}, { onopen = noop, onend = noop, onclose
|
|
|
782
782
|
if (incomings) {
|
|
783
783
|
incomings.push(x);
|
|
784
784
|
remaining -= x.length;
|
|
785
|
-
if (remaining
|
|
785
|
+
if (remaining > 0)
|
|
786
786
|
return;
|
|
787
787
|
}
|
|
788
788
|
incoming = incomings ? Buffer.concat(incomings, length - remaining) : incoming.length === 0 ? x : Buffer.concat([incoming, x], incoming.length + x.length);
|
|
@@ -853,6 +853,10 @@ function Connection(options, queues = {}, { onopen = noop, onend = noop, onclose
|
|
|
853
853
|
initial && (queryError(initial, err), initial = null);
|
|
854
854
|
}
|
|
855
855
|
function queryError(query2, err) {
|
|
856
|
+
if (query2.reserve)
|
|
857
|
+
return query2.reject(err);
|
|
858
|
+
if (!err || typeof err !== "object")
|
|
859
|
+
err = new Error(err);
|
|
856
860
|
"query" in err || "parameters" in err || Object.defineProperties(err, {
|
|
857
861
|
stack: { value: err.stack + query2.origin.replace(/.*\n/, `
|
|
858
862
|
`), enumerable: options.debug },
|
|
@@ -937,10 +941,10 @@ function Connection(options, queues = {}, { onopen = noop, onend = noop, onclose
|
|
|
937
941
|
return terminate();
|
|
938
942
|
}
|
|
939
943
|
if (needsTypes) {
|
|
940
|
-
initial
|
|
944
|
+
initial.reserve && (initial = null);
|
|
941
945
|
return fetchArrayTypes();
|
|
942
946
|
}
|
|
943
|
-
initial
|
|
947
|
+
initial && !initial.reserve && execute(initial);
|
|
944
948
|
options.shared.retries = retries = 0;
|
|
945
949
|
initial = null;
|
|
946
950
|
return;
|
|
@@ -1292,7 +1296,7 @@ function timer(fn, seconds) {
|
|
|
1292
1296
|
}
|
|
1293
1297
|
}
|
|
1294
1298
|
|
|
1295
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
1299
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/subscribe.js
|
|
1296
1300
|
var noop2 = () => {};
|
|
1297
1301
|
function Subscribe(postgres2, options) {
|
|
1298
1302
|
const subscribers = new Map, slot = "postgresjs_" + Math.random().toString(36).slice(2), state = {};
|
|
@@ -1488,7 +1492,7 @@ function parseEvent(x) {
|
|
|
1488
1492
|
return (command || "*") + (path ? ":" + (path.indexOf(".") === -1 ? "public." + path : path) : "") + (key ? "=" + key : "");
|
|
1489
1493
|
}
|
|
1490
1494
|
|
|
1491
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
1495
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/large.js
|
|
1492
1496
|
import Stream2 from "stream";
|
|
1493
1497
|
function largeObject(sql, oid, mode = 131072 | 262144) {
|
|
1494
1498
|
return new Promise(async (resolve, reject) => {
|
|
@@ -1554,7 +1558,7 @@ function largeObject(sql, oid, mode = 131072 | 262144) {
|
|
|
1554
1558
|
});
|
|
1555
1559
|
}
|
|
1556
1560
|
|
|
1557
|
-
// ../../node_modules/.pnpm/postgres@3.4.
|
|
1561
|
+
// ../../node_modules/.pnpm/postgres@3.4.7/node_modules/postgres/src/index.js
|
|
1558
1562
|
Object.assign(Postgres, {
|
|
1559
1563
|
PostgresError,
|
|
1560
1564
|
toPascal,
|
|
@@ -1689,9 +1693,10 @@ function Postgres(a, b2) {
|
|
|
1689
1693
|
}
|
|
1690
1694
|
async function reserve() {
|
|
1691
1695
|
const queue = queue_default();
|
|
1692
|
-
const c = open.length ? open.shift() : await new Promise((
|
|
1693
|
-
|
|
1694
|
-
|
|
1696
|
+
const c = open.length ? open.shift() : await new Promise((resolve, reject) => {
|
|
1697
|
+
const query = { reserve: resolve, reject };
|
|
1698
|
+
queries.push(query);
|
|
1699
|
+
closed.length && connect(closed.shift(), query);
|
|
1695
1700
|
});
|
|
1696
1701
|
move(c, reserved);
|
|
1697
1702
|
c.reserved = () => queue.length ? c.execute(queue.shift()) : move(c, reserved);
|
|
@@ -1873,7 +1878,7 @@ function parseOptions(a, b2) {
|
|
|
1873
1878
|
return acc;
|
|
1874
1879
|
}, {}),
|
|
1875
1880
|
connection: {
|
|
1876
|
-
application_name: "postgres.js",
|
|
1881
|
+
application_name: env.PGAPPNAME || "postgres.js",
|
|
1877
1882
|
...o.connection,
|
|
1878
1883
|
...Object.entries(query).reduce((acc, [k, v]) => ((k in defaults) || (acc[k] = v), acc), {})
|
|
1879
1884
|
},
|
|
@@ -1947,7 +1952,7 @@ function osUsername() {
|
|
|
1947
1952
|
}
|
|
1948
1953
|
}
|
|
1949
1954
|
|
|
1950
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
1955
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/entity.js
|
|
1951
1956
|
var entityKind = Symbol.for("drizzle:entityKind");
|
|
1952
1957
|
var hasOwnEntityKind = Symbol.for("drizzle:hasOwnEntityKind");
|
|
1953
1958
|
function is(value, type) {
|
|
@@ -1972,7 +1977,7 @@ function is(value, type) {
|
|
|
1972
1977
|
return false;
|
|
1973
1978
|
}
|
|
1974
1979
|
|
|
1975
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
1980
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/logger.js
|
|
1976
1981
|
class ConsoleLogWriter {
|
|
1977
1982
|
static [entityKind] = "ConsoleLogWriter";
|
|
1978
1983
|
write(message) {
|
|
@@ -2004,7 +2009,7 @@ class NoopLogger {
|
|
|
2004
2009
|
logQuery() {}
|
|
2005
2010
|
}
|
|
2006
2011
|
|
|
2007
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2012
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/query-promise.js
|
|
2008
2013
|
class QueryPromise {
|
|
2009
2014
|
static [entityKind] = "QueryPromise";
|
|
2010
2015
|
[Symbol.toStringTag] = "QueryPromise";
|
|
@@ -2025,7 +2030,7 @@ class QueryPromise {
|
|
|
2025
2030
|
}
|
|
2026
2031
|
}
|
|
2027
2032
|
|
|
2028
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2033
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/column.js
|
|
2029
2034
|
class Column {
|
|
2030
2035
|
constructor(table, config) {
|
|
2031
2036
|
this.table = table;
|
|
@@ -2075,20 +2080,20 @@ class Column {
|
|
|
2075
2080
|
}
|
|
2076
2081
|
}
|
|
2077
2082
|
|
|
2078
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2083
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/table.utils.js
|
|
2079
2084
|
var TableName = Symbol.for("drizzle:Name");
|
|
2080
2085
|
|
|
2081
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2086
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/tracing-utils.js
|
|
2082
2087
|
function iife(fn, ...args) {
|
|
2083
2088
|
return fn(...args);
|
|
2084
2089
|
}
|
|
2085
2090
|
|
|
2086
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2091
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/unique-constraint.js
|
|
2087
2092
|
function uniqueKeyName(table, columns) {
|
|
2088
2093
|
return `${table[TableName]}_${columns.join("_")}_unique`;
|
|
2089
2094
|
}
|
|
2090
2095
|
|
|
2091
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2096
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/common.js
|
|
2092
2097
|
class PgColumn extends Column {
|
|
2093
2098
|
constructor(table, config) {
|
|
2094
2099
|
if (!config.uniqueName) {
|
|
@@ -2137,7 +2142,7 @@ class ExtraConfigColumn extends PgColumn {
|
|
|
2137
2142
|
}
|
|
2138
2143
|
}
|
|
2139
2144
|
|
|
2140
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2145
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/enum.js
|
|
2141
2146
|
class PgEnumObjectColumn extends PgColumn {
|
|
2142
2147
|
static [entityKind] = "PgEnumObjectColumn";
|
|
2143
2148
|
enum;
|
|
@@ -2167,7 +2172,7 @@ class PgEnumColumn extends PgColumn {
|
|
|
2167
2172
|
}
|
|
2168
2173
|
}
|
|
2169
2174
|
|
|
2170
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2175
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/subquery.js
|
|
2171
2176
|
class Subquery {
|
|
2172
2177
|
static [entityKind] = "Subquery";
|
|
2173
2178
|
constructor(sql, selection, alias, isWith = false) {
|
|
@@ -2185,10 +2190,10 @@ class WithSubquery extends Subquery {
|
|
|
2185
2190
|
static [entityKind] = "WithSubquery";
|
|
2186
2191
|
}
|
|
2187
2192
|
|
|
2188
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2193
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/version.js
|
|
2189
2194
|
var version = "0.43.1";
|
|
2190
2195
|
|
|
2191
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2196
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/tracing.js
|
|
2192
2197
|
var otel;
|
|
2193
2198
|
var rawTracer;
|
|
2194
2199
|
var tracer = {
|
|
@@ -2215,10 +2220,10 @@ var tracer = {
|
|
|
2215
2220
|
}
|
|
2216
2221
|
};
|
|
2217
2222
|
|
|
2218
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2223
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/view-common.js
|
|
2219
2224
|
var ViewBaseConfig = Symbol.for("drizzle:ViewBaseConfig");
|
|
2220
2225
|
|
|
2221
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2226
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/table.js
|
|
2222
2227
|
var Schema = Symbol.for("drizzle:Schema");
|
|
2223
2228
|
var Columns = Symbol.for("drizzle:Columns");
|
|
2224
2229
|
var ExtraConfigColumns = Symbol.for("drizzle:ExtraConfigColumns");
|
|
@@ -2262,7 +2267,7 @@ function getTableUniqueName(table) {
|
|
|
2262
2267
|
return `${table[Schema] ?? "public"}.${table[TableName]}`;
|
|
2263
2268
|
}
|
|
2264
2269
|
|
|
2265
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2270
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/sql/sql.js
|
|
2266
2271
|
function isSQLWrapper(value) {
|
|
2267
2272
|
return value !== null && value !== undefined && typeof value.getSQL === "function";
|
|
2268
2273
|
}
|
|
@@ -2635,7 +2640,7 @@ Subquery.prototype.getSQL = function() {
|
|
|
2635
2640
|
return new SQL([this]);
|
|
2636
2641
|
};
|
|
2637
2642
|
|
|
2638
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2643
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/alias.js
|
|
2639
2644
|
class ColumnAliasProxyHandler {
|
|
2640
2645
|
constructor(table) {
|
|
2641
2646
|
this.table = table;
|
|
@@ -2714,7 +2719,7 @@ function mapColumnsInSQLToAlias(query, alias) {
|
|
|
2714
2719
|
}));
|
|
2715
2720
|
}
|
|
2716
2721
|
|
|
2717
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2722
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/selection-proxy.js
|
|
2718
2723
|
class SelectionProxyHandler {
|
|
2719
2724
|
static [entityKind] = "SelectionProxyHandler";
|
|
2720
2725
|
config;
|
|
@@ -2766,7 +2771,7 @@ class SelectionProxyHandler {
|
|
|
2766
2771
|
}
|
|
2767
2772
|
}
|
|
2768
2773
|
|
|
2769
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2774
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/utils.js
|
|
2770
2775
|
function mapResultRow(columns, row, joinsNotNullableMap) {
|
|
2771
2776
|
const nullifyMap = {};
|
|
2772
2777
|
const result = columns.reduce((result2, { path, field }, columnIndex) => {
|
|
@@ -2911,7 +2916,7 @@ function isConfig(data) {
|
|
|
2911
2916
|
return false;
|
|
2912
2917
|
}
|
|
2913
2918
|
|
|
2914
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2919
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/delete.js
|
|
2915
2920
|
class PgDeleteBase extends QueryPromise {
|
|
2916
2921
|
constructor(table, session, dialect, withList) {
|
|
2917
2922
|
super();
|
|
@@ -2967,7 +2972,7 @@ class PgDeleteBase extends QueryPromise {
|
|
|
2967
2972
|
}
|
|
2968
2973
|
}
|
|
2969
2974
|
|
|
2970
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
2975
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/casing.js
|
|
2971
2976
|
function toSnakeCase(input) {
|
|
2972
2977
|
const words = input.replace(/['\u2019]/g, "").match(/[\da-z]+|[A-Z]+(?![a-z])|[A-Z][\da-z]+/g) ?? [];
|
|
2973
2978
|
return words.map((word) => word.toLowerCase()).join("_");
|
|
@@ -3020,7 +3025,7 @@ class CasingCache {
|
|
|
3020
3025
|
}
|
|
3021
3026
|
}
|
|
3022
3027
|
|
|
3023
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3028
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/errors.js
|
|
3024
3029
|
class DrizzleError extends Error {
|
|
3025
3030
|
static [entityKind] = "DrizzleError";
|
|
3026
3031
|
constructor({ message, cause }) {
|
|
@@ -3037,7 +3042,7 @@ class TransactionRollbackError extends DrizzleError {
|
|
|
3037
3042
|
}
|
|
3038
3043
|
}
|
|
3039
3044
|
|
|
3040
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3045
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/date.js
|
|
3041
3046
|
class PgDate extends PgColumn {
|
|
3042
3047
|
static [entityKind] = "PgDate";
|
|
3043
3048
|
getSQLType() {
|
|
@@ -3057,7 +3062,7 @@ class PgDateString extends PgColumn {
|
|
|
3057
3062
|
}
|
|
3058
3063
|
}
|
|
3059
3064
|
|
|
3060
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3065
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/json.js
|
|
3061
3066
|
class PgJson extends PgColumn {
|
|
3062
3067
|
static [entityKind] = "PgJson";
|
|
3063
3068
|
constructor(table, config) {
|
|
@@ -3081,7 +3086,7 @@ class PgJson extends PgColumn {
|
|
|
3081
3086
|
}
|
|
3082
3087
|
}
|
|
3083
3088
|
|
|
3084
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3089
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/jsonb.js
|
|
3085
3090
|
class PgJsonb extends PgColumn {
|
|
3086
3091
|
static [entityKind] = "PgJsonb";
|
|
3087
3092
|
constructor(table, config) {
|
|
@@ -3105,7 +3110,7 @@ class PgJsonb extends PgColumn {
|
|
|
3105
3110
|
}
|
|
3106
3111
|
}
|
|
3107
3112
|
|
|
3108
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3113
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/numeric.js
|
|
3109
3114
|
class PgNumeric extends PgColumn {
|
|
3110
3115
|
static [entityKind] = "PgNumeric";
|
|
3111
3116
|
precision;
|
|
@@ -3131,7 +3136,7 @@ class PgNumeric extends PgColumn {
|
|
|
3131
3136
|
}
|
|
3132
3137
|
}
|
|
3133
3138
|
|
|
3134
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3139
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/time.js
|
|
3135
3140
|
class PgTime extends PgColumn {
|
|
3136
3141
|
static [entityKind] = "PgTime";
|
|
3137
3142
|
withTimezone;
|
|
@@ -3147,7 +3152,7 @@ class PgTime extends PgColumn {
|
|
|
3147
3152
|
}
|
|
3148
3153
|
}
|
|
3149
3154
|
|
|
3150
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3155
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/timestamp.js
|
|
3151
3156
|
class PgTimestamp extends PgColumn {
|
|
3152
3157
|
static [entityKind] = "PgTimestamp";
|
|
3153
3158
|
withTimezone;
|
|
@@ -3183,7 +3188,7 @@ class PgTimestampString extends PgColumn {
|
|
|
3183
3188
|
}
|
|
3184
3189
|
}
|
|
3185
3190
|
|
|
3186
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3191
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/columns/uuid.js
|
|
3187
3192
|
class PgUUID extends PgColumn {
|
|
3188
3193
|
static [entityKind] = "PgUUID";
|
|
3189
3194
|
getSQLType() {
|
|
@@ -3191,7 +3196,7 @@ class PgUUID extends PgColumn {
|
|
|
3191
3196
|
}
|
|
3192
3197
|
}
|
|
3193
3198
|
|
|
3194
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3199
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/table.js
|
|
3195
3200
|
var InlineForeignKeys = Symbol.for("drizzle:PgInlineForeignKeys");
|
|
3196
3201
|
var EnableRLS = Symbol.for("drizzle:EnableRLS");
|
|
3197
3202
|
|
|
@@ -3207,7 +3212,7 @@ class PgTable extends Table {
|
|
|
3207
3212
|
[Table.Symbol.ExtraConfigColumns] = {};
|
|
3208
3213
|
}
|
|
3209
3214
|
|
|
3210
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3215
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/primary-keys.js
|
|
3211
3216
|
class PrimaryKeyBuilder {
|
|
3212
3217
|
static [entityKind] = "PgPrimaryKeyBuilder";
|
|
3213
3218
|
columns;
|
|
@@ -3235,7 +3240,7 @@ class PrimaryKey {
|
|
|
3235
3240
|
}
|
|
3236
3241
|
}
|
|
3237
3242
|
|
|
3238
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3243
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/sql/expressions/conditions.js
|
|
3239
3244
|
function bindIfParam(value, column) {
|
|
3240
3245
|
if (isDriverValueEncoder(column) && !isSQLWrapper(value) && !is(value, Param) && !is(value, Placeholder) && !is(value, Column) && !is(value, Table) && !is(value, View)) {
|
|
3241
3246
|
return new Param(value, column);
|
|
@@ -3340,7 +3345,7 @@ function notIlike(column, value) {
|
|
|
3340
3345
|
return sql`${column} not ilike ${value}`;
|
|
3341
3346
|
}
|
|
3342
3347
|
|
|
3343
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3348
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/sql/expressions/select.js
|
|
3344
3349
|
function asc(column) {
|
|
3345
3350
|
return sql`${column} asc`;
|
|
3346
3351
|
}
|
|
@@ -3348,7 +3353,7 @@ function desc(column) {
|
|
|
3348
3353
|
return sql`${column} desc`;
|
|
3349
3354
|
}
|
|
3350
3355
|
|
|
3351
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3356
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/relations.js
|
|
3352
3357
|
class Relation {
|
|
3353
3358
|
constructor(sourceTable, referencedTable, relationName) {
|
|
3354
3359
|
this.sourceTable = sourceTable;
|
|
@@ -3568,12 +3573,12 @@ function mapRelationalRow(tablesConfig, tableConfig, row, buildQueryResultSelect
|
|
|
3568
3573
|
return result;
|
|
3569
3574
|
}
|
|
3570
3575
|
|
|
3571
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3576
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/view-base.js
|
|
3572
3577
|
class PgViewBase extends View {
|
|
3573
3578
|
static [entityKind] = "PgViewBase";
|
|
3574
3579
|
}
|
|
3575
3580
|
|
|
3576
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
3581
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/dialect.js
|
|
3577
3582
|
class PgDialect {
|
|
3578
3583
|
static [entityKind] = "PgDialect";
|
|
3579
3584
|
casing;
|
|
@@ -4131,7 +4136,7 @@ class PgDialect {
|
|
|
4131
4136
|
}
|
|
4132
4137
|
}
|
|
4133
4138
|
|
|
4134
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4139
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/query-builders/query-builder.js
|
|
4135
4140
|
class TypedQueryBuilder {
|
|
4136
4141
|
static [entityKind] = "TypedQueryBuilder";
|
|
4137
4142
|
getSelectedFields() {
|
|
@@ -4139,7 +4144,7 @@ class TypedQueryBuilder {
|
|
|
4139
4144
|
}
|
|
4140
4145
|
}
|
|
4141
4146
|
|
|
4142
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4147
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/select.js
|
|
4143
4148
|
class PgSelectBuilder {
|
|
4144
4149
|
static [entityKind] = "PgSelectBuilder";
|
|
4145
4150
|
fields;
|
|
@@ -4433,7 +4438,7 @@ var intersectAll = createSetOperator("intersect", true);
|
|
|
4433
4438
|
var except = createSetOperator("except", false);
|
|
4434
4439
|
var exceptAll = createSetOperator("except", true);
|
|
4435
4440
|
|
|
4436
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4441
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/query-builder.js
|
|
4437
4442
|
class QueryBuilder {
|
|
4438
4443
|
static [entityKind] = "PgQueryBuilder";
|
|
4439
4444
|
dialect;
|
|
@@ -4511,7 +4516,7 @@ class QueryBuilder {
|
|
|
4511
4516
|
}
|
|
4512
4517
|
}
|
|
4513
4518
|
|
|
4514
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4519
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/insert.js
|
|
4515
4520
|
class PgInsertBuilder {
|
|
4516
4521
|
constructor(table, session, dialect, withList, overridingSystemValue_) {
|
|
4517
4522
|
this.table = table;
|
|
@@ -4630,7 +4635,7 @@ class PgInsertBase extends QueryPromise {
|
|
|
4630
4635
|
}
|
|
4631
4636
|
}
|
|
4632
4637
|
|
|
4633
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4638
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/refresh-materialized-view.js
|
|
4634
4639
|
class PgRefreshMaterializedView extends QueryPromise {
|
|
4635
4640
|
constructor(view, session, dialect) {
|
|
4636
4641
|
super();
|
|
@@ -4681,7 +4686,7 @@ class PgRefreshMaterializedView extends QueryPromise {
|
|
|
4681
4686
|
};
|
|
4682
4687
|
}
|
|
4683
4688
|
|
|
4684
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4689
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/update.js
|
|
4685
4690
|
class PgUpdateBuilder {
|
|
4686
4691
|
constructor(table, session, dialect, withList) {
|
|
4687
4692
|
this.table = table;
|
|
@@ -4831,7 +4836,7 @@ class PgUpdateBase extends QueryPromise {
|
|
|
4831
4836
|
}
|
|
4832
4837
|
}
|
|
4833
4838
|
|
|
4834
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4839
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/count.js
|
|
4835
4840
|
class PgCountBuilder extends SQL {
|
|
4836
4841
|
constructor(params) {
|
|
4837
4842
|
super(PgCountBuilder.buildEmbeddedCount(params.source, params.filters).queryChunks);
|
|
@@ -4872,7 +4877,7 @@ class PgCountBuilder extends SQL {
|
|
|
4872
4877
|
}
|
|
4873
4878
|
}
|
|
4874
4879
|
|
|
4875
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4880
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/query.js
|
|
4876
4881
|
class RelationalQueryBuilder {
|
|
4877
4882
|
constructor(fullSchema, schema, tableNamesMap, table, tableConfig, dialect, session) {
|
|
4878
4883
|
this.fullSchema = fullSchema;
|
|
@@ -4955,7 +4960,7 @@ class PgRelationalQuery extends QueryPromise {
|
|
|
4955
4960
|
}
|
|
4956
4961
|
}
|
|
4957
4962
|
|
|
4958
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4963
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/query-builders/raw.js
|
|
4959
4964
|
class PgRaw extends QueryPromise {
|
|
4960
4965
|
constructor(execute, sql2, query, mapBatchResult) {
|
|
4961
4966
|
super();
|
|
@@ -4982,7 +4987,7 @@ class PgRaw extends QueryPromise {
|
|
|
4982
4987
|
}
|
|
4983
4988
|
}
|
|
4984
4989
|
|
|
4985
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
4990
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/db.js
|
|
4986
4991
|
class PgDatabase {
|
|
4987
4992
|
constructor(dialect, session, schema) {
|
|
4988
4993
|
this.dialect = dialect;
|
|
@@ -5106,7 +5111,7 @@ class PgDatabase {
|
|
|
5106
5111
|
}
|
|
5107
5112
|
}
|
|
5108
5113
|
|
|
5109
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
5114
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/pg-core/session.js
|
|
5110
5115
|
class PgPreparedQuery {
|
|
5111
5116
|
constructor(query) {
|
|
5112
5117
|
this.query = query;
|
|
@@ -5176,7 +5181,7 @@ class PgTransaction extends PgDatabase {
|
|
|
5176
5181
|
}
|
|
5177
5182
|
}
|
|
5178
5183
|
|
|
5179
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
5184
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/postgres-js/session.js
|
|
5180
5185
|
class PostgresJsPreparedQuery extends PgPreparedQuery {
|
|
5181
5186
|
constructor(client, queryString, params, logger, fields, _isResponseInArrayMode, customResultMapper) {
|
|
5182
5187
|
super({ sql: queryString, params });
|
|
@@ -5284,7 +5289,7 @@ class PostgresJsTransaction extends PgTransaction {
|
|
|
5284
5289
|
}
|
|
5285
5290
|
}
|
|
5286
5291
|
|
|
5287
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
5292
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/postgres-js/driver.js
|
|
5288
5293
|
class PostgresJsDatabase extends PgDatabase {
|
|
5289
5294
|
static [entityKind] = "PostgresJsDatabase";
|
|
5290
5295
|
}
|
|
@@ -5348,7 +5353,7 @@ function drizzle(...params) {
|
|
|
5348
5353
|
drizzle2.mock = mock;
|
|
5349
5354
|
})(drizzle || (drizzle = {}));
|
|
5350
5355
|
|
|
5351
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
5356
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/migrator.js
|
|
5352
5357
|
import crypto2 from "crypto";
|
|
5353
5358
|
import fs2 from "fs";
|
|
5354
5359
|
function readMigrationFiles(config) {
|
|
@@ -5380,13 +5385,13 @@ function readMigrationFiles(config) {
|
|
|
5380
5385
|
return migrationQueries;
|
|
5381
5386
|
}
|
|
5382
5387
|
|
|
5383
|
-
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.
|
|
5388
|
+
// ../../node_modules/.pnpm/drizzle-orm@0.43.1_bun-types@1.2.14_postgres@3.4.7/node_modules/drizzle-orm/postgres-js/migrator.js
|
|
5384
5389
|
async function migrate(db, config) {
|
|
5385
5390
|
const migrations = readMigrationFiles(config);
|
|
5386
5391
|
await db.dialect.migrate(migrations, db.session, config);
|
|
5387
5392
|
}
|
|
5388
5393
|
|
|
5389
|
-
// ../../node_modules/.pnpm/@t3-oss+env-core@0.13.4_arktype@2.1.20_typescript@5.8.3_valibot@1.0.0_typescript@5.8.3__zod@3.25.
|
|
5394
|
+
// ../../node_modules/.pnpm/@t3-oss+env-core@0.13.4_arktype@2.1.20_typescript@5.8.3_valibot@1.0.0_typescript@5.8.3__zod@3.25.30/node_modules/@t3-oss/env-core/dist/src-Cq4nGjdj.js
|
|
5390
5395
|
function ensureSynchronous(value, message) {
|
|
5391
5396
|
if (value instanceof Promise)
|
|
5392
5397
|
throw new Error(message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tempest.games",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.10",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -25,23 +25,23 @@
|
|
|
25
25
|
"index.html"
|
|
26
26
|
],
|
|
27
27
|
"dependencies": {
|
|
28
|
-
"@floating-ui/react": "0.27.
|
|
28
|
+
"@floating-ui/react": "0.27.9",
|
|
29
29
|
"@react-email/components": "0.0.41",
|
|
30
30
|
"@t3-oss/env-core": "0.13.4",
|
|
31
|
-
"@trpc/client": "11.1.
|
|
32
|
-
"@trpc/server": "11.1.
|
|
31
|
+
"@trpc/client": "11.1.3",
|
|
32
|
+
"@trpc/server": "11.1.3",
|
|
33
33
|
"arktype": "2.1.20",
|
|
34
34
|
"cron": "4.3.0",
|
|
35
35
|
"drizzle-orm": "0.43.1",
|
|
36
|
-
"motion": "12.
|
|
36
|
+
"motion": "12.14.0",
|
|
37
37
|
"nanoid": "5.1.5",
|
|
38
|
-
"openai": "4.
|
|
39
|
-
"postgres": "3.4.
|
|
38
|
+
"openai": "4.103.0",
|
|
39
|
+
"postgres": "3.4.7",
|
|
40
40
|
"react": "19.1.0",
|
|
41
41
|
"react-dom": "19.1.0",
|
|
42
42
|
"react-email": "4.0.15",
|
|
43
43
|
"resend": "4.5.1",
|
|
44
|
-
"safegen": "0.4.
|
|
44
|
+
"safegen": "0.4.1",
|
|
45
45
|
"socket.io": "4.8.1",
|
|
46
46
|
"socket.io-client": "4.8.1",
|
|
47
47
|
"atom.io": "0.33.4",
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@eslint/js": "9.27.0",
|
|
53
53
|
"@react-email/components": "0.0.41",
|
|
54
|
-
"@types/bun": "npm:bun-types@1.2.
|
|
54
|
+
"@types/bun": "npm:bun-types@1.2.14",
|
|
55
55
|
"@types/cors": "2.8.18",
|
|
56
|
-
"@types/node": "22.15.
|
|
57
|
-
"@types/react": "19.1.
|
|
56
|
+
"@types/node": "22.15.21",
|
|
57
|
+
"@types/react": "19.1.5",
|
|
58
58
|
"@types/react-dom": "19.1.5",
|
|
59
|
-
"@vitejs/plugin-react-swc": "3.
|
|
59
|
+
"@vitejs/plugin-react-swc": "3.10.0",
|
|
60
60
|
"concurrently": "9.1.2",
|
|
61
61
|
"cors": "2.8.5",
|
|
62
62
|
"cross-env": "7.0.3",
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"elysia": "1.3.1",
|
|
67
67
|
"eslint": "9.27.0",
|
|
68
68
|
"eslint-plugin-react-refresh": "0.4.20",
|
|
69
|
-
"globals": "16.
|
|
69
|
+
"globals": "16.2.0",
|
|
70
70
|
"rimraf": "6.0.1",
|
|
71
71
|
"sass-embedded": "1.89.0",
|
|
72
72
|
"tsx": "4.19.4",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"vite-tsconfig-paths": "5.1.4",
|
|
77
77
|
"vitest": "3.1.4",
|
|
78
78
|
"flightdeck": "0.2.35",
|
|
79
|
-
"varmint": "0.5.
|
|
79
|
+
"varmint": "0.5.2"
|
|
80
80
|
},
|
|
81
81
|
"scripts": {
|
|
82
82
|
"dev": "bun run env:dev && concurrently \"bun:dev:*\"",
|