tachyon-dom 0.1.0

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.
Files changed (120) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +339 -0
  3. package/dist/adapters/lambda.d.ts +65 -0
  4. package/dist/adapters/lambda.js +211 -0
  5. package/dist/adapters/node.d.ts +25 -0
  6. package/dist/adapters/node.js +360 -0
  7. package/dist/adapters/workers.d.ts +149 -0
  8. package/dist/adapters/workers.js +272 -0
  9. package/dist/adapters.d.ts +3 -0
  10. package/dist/adapters.js +3 -0
  11. package/dist/app.d.ts +98 -0
  12. package/dist/app.js +306 -0
  13. package/dist/cli.d.ts +55 -0
  14. package/dist/cli.js +711 -0
  15. package/dist/compiler/expression.d.ts +55 -0
  16. package/dist/compiler/expression.js +858 -0
  17. package/dist/compiler/index.d.ts +8 -0
  18. package/dist/compiler/index.js +50 -0
  19. package/dist/compiler/ir.d.ts +4 -0
  20. package/dist/compiler/ir.js +255 -0
  21. package/dist/compiler/parser.d.ts +3 -0
  22. package/dist/compiler/parser.js +236 -0
  23. package/dist/compiler/sfc.d.ts +33 -0
  24. package/dist/compiler/sfc.js +439 -0
  25. package/dist/compiler/targets/client.d.ts +3 -0
  26. package/dist/compiler/targets/client.js +568 -0
  27. package/dist/compiler/targets/server.d.ts +7 -0
  28. package/dist/compiler/targets/server.js +396 -0
  29. package/dist/compiler/targets/stream.d.ts +2 -0
  30. package/dist/compiler/targets/stream.js +204 -0
  31. package/dist/compiler/types.d.ts +185 -0
  32. package/dist/compiler/types.js +1 -0
  33. package/dist/compiler/utils.d.ts +40 -0
  34. package/dist/compiler/utils.js +185 -0
  35. package/dist/compiler/whitespace.d.ts +2 -0
  36. package/dist/compiler/whitespace.js +66 -0
  37. package/dist/compiler.d.ts +1 -0
  38. package/dist/compiler.js +1 -0
  39. package/dist/constant-time.d.ts +1 -0
  40. package/dist/constant-time.js +26 -0
  41. package/dist/cookies.d.ts +44 -0
  42. package/dist/cookies.js +199 -0
  43. package/dist/diagnostics.d.ts +22 -0
  44. package/dist/diagnostics.js +45 -0
  45. package/dist/env.d.ts +27 -0
  46. package/dist/env.js +37 -0
  47. package/dist/html-escape.d.ts +2 -0
  48. package/dist/html-escape.js +20 -0
  49. package/dist/html-whitespace.d.ts +6 -0
  50. package/dist/html-whitespace.js +83 -0
  51. package/dist/i18n.d.ts +19 -0
  52. package/dist/i18n.js +93 -0
  53. package/dist/index.d.ts +20 -0
  54. package/dist/index.js +18 -0
  55. package/dist/language-server.d.ts +17 -0
  56. package/dist/language-server.js +79 -0
  57. package/dist/package-integrity.d.ts +9 -0
  58. package/dist/package-integrity.js +64 -0
  59. package/dist/result.d.ts +13 -0
  60. package/dist/result.js +4 -0
  61. package/dist/router-node.d.ts +2 -0
  62. package/dist/router-node.js +12 -0
  63. package/dist/router.d.ts +324 -0
  64. package/dist/router.js +1024 -0
  65. package/dist/runtime/attr.d.ts +3 -0
  66. package/dist/runtime/attr.js +66 -0
  67. package/dist/runtime/class.d.ts +2 -0
  68. package/dist/runtime/class.js +10 -0
  69. package/dist/runtime/conditional.d.ts +78 -0
  70. package/dist/runtime/conditional.js +140 -0
  71. package/dist/runtime/enhancement.d.ts +11 -0
  72. package/dist/runtime/enhancement.js +70 -0
  73. package/dist/runtime/error-boundary.d.ts +8 -0
  74. package/dist/runtime/error-boundary.js +27 -0
  75. package/dist/runtime/event.d.ts +1 -0
  76. package/dist/runtime/event.js +11 -0
  77. package/dist/runtime/form.d.ts +41 -0
  78. package/dist/runtime/form.js +167 -0
  79. package/dist/runtime/fragment.d.ts +6 -0
  80. package/dist/runtime/fragment.js +18 -0
  81. package/dist/runtime/html.d.ts +8 -0
  82. package/dist/runtime/html.js +6 -0
  83. package/dist/runtime/hydrate.d.ts +68 -0
  84. package/dist/runtime/hydrate.js +205 -0
  85. package/dist/runtime/keyed-rows.d.ts +61 -0
  86. package/dist/runtime/keyed-rows.js +192 -0
  87. package/dist/runtime/list.d.ts +84 -0
  88. package/dist/runtime/list.js +424 -0
  89. package/dist/runtime/portal.d.ts +6 -0
  90. package/dist/runtime/portal.js +12 -0
  91. package/dist/runtime/router.d.ts +102 -0
  92. package/dist/runtime/router.js +649 -0
  93. package/dist/runtime/signal.d.ts +30 -0
  94. package/dist/runtime/signal.js +275 -0
  95. package/dist/runtime/store.d.ts +1 -0
  96. package/dist/runtime/store.js +1 -0
  97. package/dist/runtime/stream-client.d.ts +8 -0
  98. package/dist/runtime/stream-client.js +33 -0
  99. package/dist/runtime/text.d.ts +2 -0
  100. package/dist/runtime/text.js +10 -0
  101. package/dist/runtime/virtual-list.d.ts +15 -0
  102. package/dist/runtime/virtual-list.js +89 -0
  103. package/dist/security.d.ts +27 -0
  104. package/dist/security.js +173 -0
  105. package/dist/server/form-action.d.ts +52 -0
  106. package/dist/server/form-action.js +102 -0
  107. package/dist/server/html.d.ts +19 -0
  108. package/dist/server/html.js +101 -0
  109. package/dist/server/stream.d.ts +4 -0
  110. package/dist/server/stream.js +72 -0
  111. package/dist/source-map.d.ts +17 -0
  112. package/dist/source-map.js +18 -0
  113. package/dist/tachyon-html.d.ts +110 -0
  114. package/dist/testing.d.ts +14 -0
  115. package/dist/testing.js +36 -0
  116. package/dist/typed.d.ts +9 -0
  117. package/dist/typed.js +4 -0
  118. package/dist/vite.d.ts +84 -0
  119. package/dist/vite.js +426 -0
  120. package/package.json +604 -0
package/package.json ADDED
@@ -0,0 +1,604 @@
1
+ {
2
+ "name": "tachyon-dom",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "A small TypeScript UI runtime and HTML-first compiler.",
6
+ "keywords": [
7
+ "compiler",
8
+ "runtime",
9
+ "ssr",
10
+ "templates",
11
+ "ui"
12
+ ],
13
+ "license": "MIT",
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "git+https://github.com/t-k/tachyon-dom.git"
17
+ },
18
+ "bin": {
19
+ "create-tachyon-dom": "./dist/cli.js",
20
+ "tachyon-dom": "./dist/cli.js"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "type": "module",
26
+ "sideEffects": false,
27
+ "exports": {
28
+ ".": {
29
+ "types": "./dist/index.d.ts",
30
+ "import": "./dist/index.js"
31
+ },
32
+ "./compiler": {
33
+ "types": "./dist/compiler.d.ts",
34
+ "import": "./dist/compiler.js"
35
+ },
36
+ "./cli": {
37
+ "types": "./dist/cli.d.ts",
38
+ "import": "./dist/cli.js"
39
+ },
40
+ "./app": {
41
+ "types": "./dist/app.d.ts",
42
+ "import": "./dist/app.js"
43
+ },
44
+ "./cookies": {
45
+ "types": "./dist/cookies.d.ts",
46
+ "import": "./dist/cookies.js"
47
+ },
48
+ "./adapters": {
49
+ "types": "./dist/adapters.d.ts",
50
+ "import": "./dist/adapters.js"
51
+ },
52
+ "./adapters/workers": {
53
+ "types": "./dist/adapters/workers.d.ts",
54
+ "import": "./dist/adapters/workers.js"
55
+ },
56
+ "./adapters/node": {
57
+ "types": "./dist/adapters/node.d.ts",
58
+ "import": "./dist/adapters/node.js"
59
+ },
60
+ "./adapters/lambda": {
61
+ "types": "./dist/adapters/lambda.d.ts",
62
+ "import": "./dist/adapters/lambda.js"
63
+ },
64
+ "./diagnostics": {
65
+ "types": "./dist/diagnostics.d.ts",
66
+ "import": "./dist/diagnostics.js"
67
+ },
68
+ "./env": {
69
+ "types": "./dist/env.d.ts",
70
+ "import": "./dist/env.js"
71
+ },
72
+ "./typed": {
73
+ "types": "./dist/typed.d.ts",
74
+ "import": "./dist/typed.js"
75
+ },
76
+ "./testing": {
77
+ "types": "./dist/testing.d.ts",
78
+ "import": "./dist/testing.js"
79
+ },
80
+ "./language-server": {
81
+ "types": "./dist/language-server.d.ts",
82
+ "import": "./dist/language-server.js"
83
+ },
84
+ "./i18n": {
85
+ "types": "./dist/i18n.d.ts",
86
+ "import": "./dist/i18n.js"
87
+ },
88
+ "./vite": {
89
+ "types": "./dist/vite.d.ts",
90
+ "import": "./dist/vite.js"
91
+ },
92
+ "./td-modules": {
93
+ "types": "./dist/tachyon-html.d.ts"
94
+ },
95
+ "./router": {
96
+ "types": "./dist/router.d.ts",
97
+ "import": "./dist/router.js"
98
+ },
99
+ "./router/node": {
100
+ "types": "./dist/router-node.d.ts",
101
+ "import": "./dist/router-node.js"
102
+ },
103
+ "./runtime/text": {
104
+ "types": "./dist/runtime/text.d.ts",
105
+ "import": "./dist/runtime/text.js"
106
+ },
107
+ "./runtime/class": {
108
+ "types": "./dist/runtime/class.d.ts",
109
+ "import": "./dist/runtime/class.js"
110
+ },
111
+ "./runtime/event": {
112
+ "types": "./dist/runtime/event.d.ts",
113
+ "import": "./dist/runtime/event.js"
114
+ },
115
+ "./runtime/conditional": {
116
+ "types": "./dist/runtime/conditional.d.ts",
117
+ "import": "./dist/runtime/conditional.js"
118
+ },
119
+ "./runtime/attr": {
120
+ "types": "./dist/runtime/attr.d.ts",
121
+ "import": "./dist/runtime/attr.js"
122
+ },
123
+ "./runtime/form": {
124
+ "types": "./dist/runtime/form.d.ts",
125
+ "import": "./dist/runtime/form.js"
126
+ },
127
+ "./runtime/enhancement": {
128
+ "types": "./dist/runtime/enhancement.d.ts",
129
+ "import": "./dist/runtime/enhancement.js"
130
+ },
131
+ "./runtime/error-boundary": {
132
+ "types": "./dist/runtime/error-boundary.d.ts",
133
+ "import": "./dist/runtime/error-boundary.js"
134
+ },
135
+ "./runtime/fragment": {
136
+ "types": "./dist/runtime/fragment.d.ts",
137
+ "import": "./dist/runtime/fragment.js"
138
+ },
139
+ "./runtime/hydrate": {
140
+ "types": "./dist/runtime/hydrate.d.ts",
141
+ "import": "./dist/runtime/hydrate.js"
142
+ },
143
+ "./runtime/list": {
144
+ "types": "./dist/runtime/list.d.ts",
145
+ "import": "./dist/runtime/list.js"
146
+ },
147
+ "./runtime/keyed-rows": {
148
+ "types": "./dist/runtime/keyed-rows.d.ts",
149
+ "import": "./dist/runtime/keyed-rows.js"
150
+ },
151
+ "./runtime/virtual-list": {
152
+ "types": "./dist/runtime/virtual-list.d.ts",
153
+ "import": "./dist/runtime/virtual-list.js"
154
+ },
155
+ "./runtime/portal": {
156
+ "types": "./dist/runtime/portal.d.ts",
157
+ "import": "./dist/runtime/portal.js"
158
+ },
159
+ "./runtime/router": {
160
+ "types": "./dist/runtime/router.d.ts",
161
+ "import": "./dist/runtime/router.js"
162
+ },
163
+ "./runtime/signal": {
164
+ "types": "./dist/runtime/signal.d.ts",
165
+ "import": "./dist/runtime/signal.js"
166
+ },
167
+ "./runtime/store": {
168
+ "types": "./dist/runtime/store.d.ts",
169
+ "import": "./dist/runtime/store.js"
170
+ },
171
+ "./runtime/stream-client": {
172
+ "types": "./dist/runtime/stream-client.d.ts",
173
+ "import": "./dist/runtime/stream-client.js"
174
+ },
175
+ "./server/stream": {
176
+ "types": "./dist/server/stream.d.ts",
177
+ "import": "./dist/server/stream.js"
178
+ },
179
+ "./server/html": {
180
+ "types": "./dist/server/html.d.ts",
181
+ "import": "./dist/server/html.js"
182
+ },
183
+ "./server/form-action": {
184
+ "types": "./dist/server/form-action.d.ts",
185
+ "import": "./dist/server/form-action.js"
186
+ },
187
+ "./security": {
188
+ "types": "./dist/security.d.ts",
189
+ "import": "./dist/security.js"
190
+ }
191
+ },
192
+ "publishConfig": {
193
+ "access": "public"
194
+ },
195
+ "scripts": {
196
+ "build": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.build.json && node scripts/copy-td-modules.mjs",
197
+ "bench:compiler": "tsx benchmark/compiler/compare-expression-backends.ts",
198
+ "bench:sfc": "tsx benchmark/compiler/compare-sfc-transform.ts",
199
+ "bench:local": "tsx benchmark/local-compare/run-local-compare.ts",
200
+ "bench:local:full": "tsx benchmark/local-compare/run-local-compare.ts --iterations 9 --warmup 3",
201
+ "bench:local:gate": "tsx benchmark/local-compare/run-local-compare.ts --max-geomean-ratio 1.25 --max-memory-ratio 1.5",
202
+ "bench:local:dev": "tsx benchmark/local-compare/run-local-compare.ts --serve-mode dev",
203
+ "bench:local:smoke": "tsx benchmark/local-compare/run-local-compare.ts --serve-mode dev --iterations 1 --warmup 1",
204
+ "bench:stream-backpressure": "tsx benchmark/streaming-backpressure.ts",
205
+ "bench:html-minification": "tsx benchmark/html-minification.ts",
206
+ "bench:local:stable": "tsx benchmark/local-compare/run-local-compare.ts --iterations 30 --warmup 5",
207
+ "bench:local:trace": "tsx benchmark/local-compare/run-local-compare.ts --serve-mode dev --iterations 1 --warmup 1 --trace-implementation tachyon-dom --trace-scenario partialUpdate",
208
+ "bench:web-framework": "tsx benchmark/web-framework/run-web-framework-benchmark.ts",
209
+ "bench:web-framework:smoke": "tsx benchmark/web-framework/run-web-framework-benchmark.ts --smoke",
210
+ "example:router": "tsx examples/router.ts",
211
+ "example:stream": "tsx examples/store-hydrate-stream.ts",
212
+ "example:full-app": "vite --config examples/full-app/vite.config.ts --host 127.0.0.1",
213
+ "example:full-app:build": "vite build --config examples/full-app/vite.config.ts",
214
+ "example:hacker-news:build": "wrangler deploy --config examples/hacker-news/wrangler.jsonc --dry-run --outdir examples/hacker-news/dist/worker",
215
+ "example:hacker-news:dev": "wrangler dev --config examples/hacker-news/wrangler.jsonc --local --port 8787",
216
+ "example:hacker-news:deploy": "wrangler deploy --config examples/hacker-news/wrangler.jsonc",
217
+ "example:web": "vite --host 127.0.0.1",
218
+ "test": "vitest run",
219
+ "build:create-package": "pnpm --dir packages/create-tachyon-dom build",
220
+ "check:exports": "publint --strict && attw --pack --no-emoji --profile esm-only",
221
+ "check:size": "size-limit",
222
+ "verify:package": "node scripts/verify-package-artifacts.mjs",
223
+ "verify:release": "node scripts/release-contract.mjs --verify-artifacts release-artifacts",
224
+ "prepare:release": "node scripts/release-contract.mjs",
225
+ "verify:starters": "node scripts/verify-generated-starters.mjs",
226
+ "verify:whitespace-types": "pnpm build && node scripts/verify-whitespace-policy-types.mjs",
227
+ "prepublishOnly": "pnpm build && pnpm verify:package && pnpm check:exports && pnpm check:size",
228
+ "lint": "oxlint .",
229
+ "format": "oxfmt --write ."
230
+ },
231
+ "dependencies": {
232
+ "oxc-parser": "^0.136.0",
233
+ "parse5": "^7.3.0",
234
+ "typescript": "npm:@typescript/typescript6@^6.0.2",
235
+ "vscode-languageserver": "^10.0.1",
236
+ "vscode-languageserver-textdocument": "^1.0.12"
237
+ },
238
+ "devDependencies": {
239
+ "@arethetypeswrong/cli": "0.18.4",
240
+ "@marko/run": "^0.10.0",
241
+ "@marko/runtime-tags": "^6.1.8",
242
+ "@marko/vite": "^6.1.0",
243
+ "@reckona/mreact": "^0.0.181",
244
+ "@reckona/mreact-reactive-core": "^0.0.181",
245
+ "@reckona/mreact-reactive-dom": "^0.0.181",
246
+ "@reckona/mreact-router": "^0.0.181",
247
+ "@reckona/mreact-shared": "^0.0.181",
248
+ "@size-limit/preset-small-lib": "12.1.0",
249
+ "@solidjs/router": "^0.16.1",
250
+ "@solidjs/start": "^1.3.2",
251
+ "@tanstack/react-router": "^1.170.16",
252
+ "@tanstack/react-start": "^1.168.26",
253
+ "@types/node": "^24.0.3",
254
+ "@types/react": "^19.2.17",
255
+ "@types/react-dom": "^19.2.3",
256
+ "@typescript/native": "npm:typescript@^7.0.2",
257
+ "@vitejs/plugin-react": "^6.0.2",
258
+ "autocannon": "^8.0.0",
259
+ "esbuild": "0.28.1",
260
+ "jsdom": "^26.1.0",
261
+ "marko": "^5.39.7",
262
+ "next": "^16.2.9",
263
+ "oxfmt": "^0.55.0",
264
+ "oxlint": "^1.70.0",
265
+ "playwright": "^1.61.0",
266
+ "publint": "0.3.21",
267
+ "react": "^19.2.7",
268
+ "react-dom": "^19.2.7",
269
+ "size-limit": "12.1.0",
270
+ "solid-js": "^1.9.13",
271
+ "tsx": "^4.22.4",
272
+ "vinxi": "^0.5.11",
273
+ "vite": "^8.0.16",
274
+ "vite-plugin-solid": "^2.11.12",
275
+ "vitest": "^4.1.9",
276
+ "wrangler": "^4.105.0"
277
+ },
278
+ "size-limit": [
279
+ {
280
+ "name": "index",
281
+ "path": "dist/index.js",
282
+ "disablePlugins": [
283
+ "@size-limit/esbuild"
284
+ ],
285
+ "limit": "8 KB"
286
+ },
287
+ {
288
+ "name": "compiler",
289
+ "path": "dist/compiler.js",
290
+ "disablePlugins": [
291
+ "@size-limit/esbuild"
292
+ ],
293
+ "limit": "2 KB"
294
+ },
295
+ {
296
+ "name": "cli",
297
+ "path": "dist/cli.js",
298
+ "disablePlugins": [
299
+ "@size-limit/esbuild"
300
+ ],
301
+ "limit": "30 KB"
302
+ },
303
+ {
304
+ "name": "app",
305
+ "path": "dist/app.js",
306
+ "disablePlugins": [
307
+ "@size-limit/esbuild"
308
+ ],
309
+ "limit": "14 KB"
310
+ },
311
+ {
312
+ "name": "cookies",
313
+ "path": "dist/cookies.js",
314
+ "disablePlugins": [
315
+ "@size-limit/esbuild"
316
+ ],
317
+ "limit": "8 KB"
318
+ },
319
+ {
320
+ "name": "adapters",
321
+ "path": "dist/adapters.js",
322
+ "disablePlugins": [
323
+ "@size-limit/esbuild"
324
+ ],
325
+ "limit": "2 KB"
326
+ },
327
+ {
328
+ "name": "adapters/workers",
329
+ "path": "dist/adapters/workers.js",
330
+ "disablePlugins": [
331
+ "@size-limit/esbuild"
332
+ ],
333
+ "limit": "14 KB"
334
+ },
335
+ {
336
+ "name": "adapters/node",
337
+ "path": "dist/adapters/node.js",
338
+ "disablePlugins": [
339
+ "@size-limit/esbuild"
340
+ ],
341
+ "limit": "14 KB"
342
+ },
343
+ {
344
+ "name": "adapters/lambda",
345
+ "path": "dist/adapters/lambda.js",
346
+ "disablePlugins": [
347
+ "@size-limit/esbuild"
348
+ ],
349
+ "limit": "12 KB"
350
+ },
351
+ {
352
+ "name": "diagnostics",
353
+ "path": "dist/diagnostics.js",
354
+ "disablePlugins": [
355
+ "@size-limit/esbuild"
356
+ ],
357
+ "limit": "4 KB"
358
+ },
359
+ {
360
+ "name": "env",
361
+ "path": "dist/env.js",
362
+ "disablePlugins": [
363
+ "@size-limit/esbuild"
364
+ ],
365
+ "limit": "4 KB"
366
+ },
367
+ {
368
+ "name": "typed",
369
+ "path": "dist/typed.js",
370
+ "disablePlugins": [
371
+ "@size-limit/esbuild"
372
+ ],
373
+ "limit": "2 KB"
374
+ },
375
+ {
376
+ "name": "testing",
377
+ "path": "dist/testing.js",
378
+ "disablePlugins": [
379
+ "@size-limit/esbuild"
380
+ ],
381
+ "limit": "4 KB"
382
+ },
383
+ {
384
+ "name": "language-server",
385
+ "path": "dist/language-server.js",
386
+ "disablePlugins": [
387
+ "@size-limit/esbuild"
388
+ ],
389
+ "limit": "6 KB"
390
+ },
391
+ {
392
+ "name": "i18n",
393
+ "path": "dist/i18n.js",
394
+ "disablePlugins": [
395
+ "@size-limit/esbuild"
396
+ ],
397
+ "limit": "6 KB"
398
+ },
399
+ {
400
+ "name": "vite",
401
+ "path": "dist/vite.js",
402
+ "disablePlugins": [
403
+ "@size-limit/esbuild"
404
+ ],
405
+ "limit": "22 KB"
406
+ },
407
+ {
408
+ "name": "router",
409
+ "path": "dist/router.js",
410
+ "disablePlugins": [
411
+ "@size-limit/esbuild"
412
+ ],
413
+ "limit": "48 KB"
414
+ },
415
+ {
416
+ "name": "router/node",
417
+ "path": "dist/router-node.js",
418
+ "disablePlugins": [
419
+ "@size-limit/esbuild"
420
+ ],
421
+ "limit": "2 KB"
422
+ },
423
+ {
424
+ "name": "runtime/text",
425
+ "path": "dist/runtime/text.js",
426
+ "disablePlugins": [
427
+ "@size-limit/esbuild"
428
+ ],
429
+ "limit": "2 KB"
430
+ },
431
+ {
432
+ "name": "runtime/class",
433
+ "path": "dist/runtime/class.js",
434
+ "disablePlugins": [
435
+ "@size-limit/esbuild"
436
+ ],
437
+ "limit": "2 KB"
438
+ },
439
+ {
440
+ "name": "runtime/event",
441
+ "path": "dist/runtime/event.js",
442
+ "disablePlugins": [
443
+ "@size-limit/esbuild"
444
+ ],
445
+ "limit": "2 KB"
446
+ },
447
+ {
448
+ "name": "runtime/conditional",
449
+ "path": "dist/runtime/conditional.js",
450
+ "disablePlugins": [
451
+ "@size-limit/esbuild"
452
+ ],
453
+ "limit": "8 KB"
454
+ },
455
+ {
456
+ "name": "runtime/attr",
457
+ "path": "dist/runtime/attr.js",
458
+ "disablePlugins": [
459
+ "@size-limit/esbuild"
460
+ ],
461
+ "limit": "4 KB"
462
+ },
463
+ {
464
+ "name": "runtime/form",
465
+ "path": "dist/runtime/form.js",
466
+ "disablePlugins": [
467
+ "@size-limit/esbuild"
468
+ ],
469
+ "limit": "8 KB"
470
+ },
471
+ {
472
+ "name": "runtime/enhancement",
473
+ "path": "dist/runtime/enhancement.js",
474
+ "disablePlugins": [
475
+ "@size-limit/esbuild"
476
+ ],
477
+ "limit": "4 KB"
478
+ },
479
+ {
480
+ "name": "runtime/error-boundary",
481
+ "path": "dist/runtime/error-boundary.js",
482
+ "disablePlugins": [
483
+ "@size-limit/esbuild"
484
+ ],
485
+ "limit": "4 KB"
486
+ },
487
+ {
488
+ "name": "runtime/fragment",
489
+ "path": "dist/runtime/fragment.js",
490
+ "disablePlugins": [
491
+ "@size-limit/esbuild"
492
+ ],
493
+ "limit": "2 KB"
494
+ },
495
+ {
496
+ "name": "runtime/hydrate",
497
+ "path": "dist/runtime/hydrate.js",
498
+ "disablePlugins": [
499
+ "@size-limit/esbuild"
500
+ ],
501
+ "limit": "10 KB"
502
+ },
503
+ {
504
+ "name": "runtime/list",
505
+ "path": "dist/runtime/list.js",
506
+ "disablePlugins": [
507
+ "@size-limit/esbuild"
508
+ ],
509
+ "limit": "16 KB"
510
+ },
511
+ {
512
+ "name": "runtime/keyed-rows",
513
+ "path": "dist/runtime/keyed-rows.js",
514
+ "disablePlugins": [
515
+ "@size-limit/esbuild"
516
+ ],
517
+ "limit": "8 KB"
518
+ },
519
+ {
520
+ "name": "runtime/virtual-list",
521
+ "path": "dist/runtime/virtual-list.js",
522
+ "disablePlugins": [
523
+ "@size-limit/esbuild"
524
+ ],
525
+ "limit": "6 KB"
526
+ },
527
+ {
528
+ "name": "runtime/portal",
529
+ "path": "dist/runtime/portal.js",
530
+ "disablePlugins": [
531
+ "@size-limit/esbuild"
532
+ ],
533
+ "limit": "2 KB"
534
+ },
535
+ {
536
+ "name": "runtime/router",
537
+ "path": "dist/runtime/router.js",
538
+ "disablePlugins": [
539
+ "@size-limit/esbuild"
540
+ ],
541
+ "limit": "28 KB"
542
+ },
543
+ {
544
+ "name": "runtime/signal",
545
+ "path": "dist/runtime/signal.js",
546
+ "disablePlugins": [
547
+ "@size-limit/esbuild"
548
+ ],
549
+ "limit": "8 KB"
550
+ },
551
+ {
552
+ "name": "runtime/store",
553
+ "path": "dist/runtime/store.js",
554
+ "disablePlugins": [
555
+ "@size-limit/esbuild"
556
+ ],
557
+ "limit": "2 KB"
558
+ },
559
+ {
560
+ "name": "runtime/stream-client",
561
+ "path": "dist/runtime/stream-client.js",
562
+ "disablePlugins": [
563
+ "@size-limit/esbuild"
564
+ ],
565
+ "limit": "4 KB"
566
+ },
567
+ {
568
+ "name": "server/stream",
569
+ "path": "dist/server/stream.js",
570
+ "disablePlugins": [
571
+ "@size-limit/esbuild"
572
+ ],
573
+ "limit": "4 KB"
574
+ },
575
+ {
576
+ "name": "server/html",
577
+ "path": "dist/server/html.js",
578
+ "disablePlugins": [
579
+ "@size-limit/esbuild"
580
+ ],
581
+ "limit": "8 KB"
582
+ },
583
+ {
584
+ "name": "server/form-action",
585
+ "path": "dist/server/form-action.js",
586
+ "disablePlugins": [
587
+ "@size-limit/esbuild"
588
+ ],
589
+ "limit": "6 KB"
590
+ },
591
+ {
592
+ "name": "security",
593
+ "path": "dist/security.js",
594
+ "disablePlugins": [
595
+ "@size-limit/esbuild"
596
+ ],
597
+ "limit": "8 KB"
598
+ }
599
+ ],
600
+ "engines": {
601
+ "node": ">=24"
602
+ },
603
+ "packageManager": "pnpm@10.32.1"
604
+ }