silgi 0.51.3 → 0.51.6
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/LICENSE +21 -0
- package/README.md +1 -83
- package/dist/core/handler.mjs +1 -1
- package/dist/integrations/better-auth/index.mjs +1 -1
- package/dist/plugins/analytics/collector.d.mts +5 -0
- package/dist/plugins/analytics/collector.mjs +11 -1
- package/dist/plugins/analytics/types.d.mts +2 -0
- package/dist/plugins/analytics.d.mts +7 -2
- package/dist/plugins/analytics.mjs +38 -1
- package/dist/scalar.mjs +20 -8
- package/lib/dashboard/index.html +2 -2
- package/package.json +20 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "silgi",
|
|
3
|
-
"version": "0.51.
|
|
3
|
+
"version": "0.51.6",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The fastest end-to-end type-safe RPC framework for TypeScript — compiled pipelines, single package, every runtime",
|
|
6
6
|
"keywords": [
|
|
@@ -236,25 +236,6 @@
|
|
|
236
236
|
"types": "./lib/srvx.d.mts"
|
|
237
237
|
}
|
|
238
238
|
},
|
|
239
|
-
"scripts": {
|
|
240
|
-
"build": "pnpm --filter silgi-analytics-dashboard build && tsdown",
|
|
241
|
-
"build:dashboard": "pnpm --filter silgi-analytics-dashboard build",
|
|
242
|
-
"dev": "vitest",
|
|
243
|
-
"bench": "node --experimental-strip-types bench/update-benchmarks.ts",
|
|
244
|
-
"bench:http": "node --experimental-strip-types bench/http.ts",
|
|
245
|
-
"bench:http:bun": "bun bench/http-bun.ts",
|
|
246
|
-
"bench:memory": "node --expose-gc --experimental-strip-types bench/memory.ts",
|
|
247
|
-
"bench:types": "tsx bench/types.ts",
|
|
248
|
-
"bench:bun": "bun test/bun-compat.ts",
|
|
249
|
-
"play": "pnpm build && pnpm --filter silgi-playground dev",
|
|
250
|
-
"lint": "oxlint . && oxfmt --check --ignore-path .oxfmtignore .",
|
|
251
|
-
"lint:fix": "oxlint --fix . && oxfmt --ignore-path .oxfmtignore .",
|
|
252
|
-
"format": "oxfmt --ignore-path .oxfmtignore .",
|
|
253
|
-
"fix": "oxlint --fix . && oxfmt --ignore-path .oxfmtignore .",
|
|
254
|
-
"test": "vitest run",
|
|
255
|
-
"typecheck": "tsgo --noEmit",
|
|
256
|
-
"release": "bumpp"
|
|
257
|
-
},
|
|
258
239
|
"dependencies": {
|
|
259
240
|
"@standard-schema/spec": "^1.1.0",
|
|
260
241
|
"cookie-es": "^3.1.1",
|
|
@@ -339,10 +320,23 @@
|
|
|
339
320
|
"node": ">=24",
|
|
340
321
|
"pnpm": ">=10"
|
|
341
322
|
},
|
|
342
|
-
"
|
|
343
|
-
|
|
344
|
-
"
|
|
345
|
-
|
|
346
|
-
|
|
323
|
+
"scripts": {
|
|
324
|
+
"build": "pnpm --filter silgi-analytics-dashboard build && tsdown",
|
|
325
|
+
"build:dashboard": "pnpm --filter silgi-analytics-dashboard build",
|
|
326
|
+
"dev": "vitest",
|
|
327
|
+
"bench": "node --experimental-strip-types bench/update-benchmarks.ts",
|
|
328
|
+
"bench:http": "node --experimental-strip-types bench/http.ts",
|
|
329
|
+
"bench:http:bun": "bun bench/http-bun.ts",
|
|
330
|
+
"bench:memory": "node --expose-gc --experimental-strip-types bench/memory.ts",
|
|
331
|
+
"bench:types": "tsx bench/types.ts",
|
|
332
|
+
"bench:bun": "bun test/bun-compat.ts",
|
|
333
|
+
"play": "pnpm build && pnpm --filter silgi-playground dev",
|
|
334
|
+
"lint": "oxlint . && oxfmt --check --ignore-path .oxfmtignore .",
|
|
335
|
+
"lint:fix": "oxlint --fix . && oxfmt --ignore-path .oxfmtignore .",
|
|
336
|
+
"format": "oxfmt --ignore-path .oxfmtignore .",
|
|
337
|
+
"fix": "oxlint --fix . && oxfmt --ignore-path .oxfmtignore .",
|
|
338
|
+
"test": "vitest run",
|
|
339
|
+
"typecheck": "tsgo --noEmit",
|
|
340
|
+
"release": "bumpp"
|
|
347
341
|
}
|
|
348
|
-
}
|
|
342
|
+
}
|