remix 3.0.0-alpha.4 → 3.0.0-alpha.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.
Files changed (121) hide show
  1. package/README.md +41 -0
  2. package/dist/assert.d.ts +2 -0
  3. package/dist/assert.d.ts.map +1 -0
  4. package/{src/component.ts → dist/assert.js} +1 -1
  5. package/dist/assets.d.ts +2 -0
  6. package/dist/assets.d.ts.map +1 -0
  7. package/dist/{component.js → assets.js} +1 -1
  8. package/dist/cli-entry.d.ts +3 -0
  9. package/dist/cli-entry.d.ts.map +1 -0
  10. package/dist/cli-entry.js +12 -0
  11. package/dist/cli.d.ts +2 -0
  12. package/dist/cli.d.ts.map +1 -0
  13. package/dist/cli.js +2 -0
  14. package/dist/node-fetch-server/test.d.ts +2 -0
  15. package/dist/node-fetch-server/test.d.ts.map +1 -0
  16. package/dist/node-fetch-server/test.js +2 -0
  17. package/dist/terminal.d.ts +2 -0
  18. package/dist/terminal.d.ts.map +1 -0
  19. package/dist/terminal.js +2 -0
  20. package/dist/test/cli.d.ts +2 -0
  21. package/dist/test/cli.d.ts.map +1 -0
  22. package/dist/test/cli.js +2 -0
  23. package/dist/test.d.ts +2 -0
  24. package/dist/test.d.ts.map +1 -0
  25. package/dist/test.js +2 -0
  26. package/dist/ui/accordion.d.ts +2 -0
  27. package/dist/ui/accordion.d.ts.map +1 -0
  28. package/dist/ui/accordion.js +2 -0
  29. package/dist/ui/anchor.d.ts +2 -0
  30. package/dist/ui/anchor.d.ts.map +1 -0
  31. package/dist/ui/anchor.js +2 -0
  32. package/dist/ui/animation.d.ts +2 -0
  33. package/dist/ui/animation.d.ts.map +1 -0
  34. package/dist/ui/animation.js +2 -0
  35. package/dist/ui/breadcrumbs.d.ts +2 -0
  36. package/dist/ui/breadcrumbs.d.ts.map +1 -0
  37. package/dist/ui/breadcrumbs.js +2 -0
  38. package/dist/ui/button.d.ts +2 -0
  39. package/dist/ui/button.d.ts.map +1 -0
  40. package/dist/ui/button.js +2 -0
  41. package/dist/ui/combobox.d.ts +2 -0
  42. package/dist/ui/combobox.d.ts.map +1 -0
  43. package/dist/ui/combobox.js +2 -0
  44. package/dist/ui/glyph.d.ts +2 -0
  45. package/dist/ui/glyph.d.ts.map +1 -0
  46. package/dist/ui/glyph.js +2 -0
  47. package/dist/ui/jsx-dev-runtime.d.ts +2 -0
  48. package/dist/ui/jsx-dev-runtime.d.ts.map +1 -0
  49. package/dist/ui/jsx-dev-runtime.js +2 -0
  50. package/dist/ui/jsx-runtime.d.ts +2 -0
  51. package/dist/ui/jsx-runtime.d.ts.map +1 -0
  52. package/dist/ui/jsx-runtime.js +2 -0
  53. package/dist/ui/listbox.d.ts +2 -0
  54. package/dist/ui/listbox.d.ts.map +1 -0
  55. package/dist/ui/listbox.js +2 -0
  56. package/dist/ui/menu.d.ts +2 -0
  57. package/dist/ui/menu.d.ts.map +1 -0
  58. package/dist/ui/menu.js +2 -0
  59. package/dist/ui/popover.d.ts +2 -0
  60. package/dist/ui/popover.d.ts.map +1 -0
  61. package/dist/ui/popover.js +2 -0
  62. package/dist/ui/scroll-lock.d.ts +2 -0
  63. package/dist/ui/scroll-lock.d.ts.map +1 -0
  64. package/dist/ui/scroll-lock.js +2 -0
  65. package/dist/ui/select.d.ts +2 -0
  66. package/dist/ui/select.d.ts.map +1 -0
  67. package/dist/ui/select.js +2 -0
  68. package/dist/ui/separator.d.ts +2 -0
  69. package/dist/ui/separator.d.ts.map +1 -0
  70. package/dist/ui/separator.js +2 -0
  71. package/dist/ui/server.d.ts +2 -0
  72. package/dist/ui/server.d.ts.map +1 -0
  73. package/dist/{component → ui}/server.js +1 -1
  74. package/dist/ui/test.d.ts +2 -0
  75. package/dist/ui/test.d.ts.map +1 -0
  76. package/dist/ui/test.js +2 -0
  77. package/dist/ui/theme.d.ts +2 -0
  78. package/dist/ui/theme.d.ts.map +1 -0
  79. package/dist/ui/theme.js +2 -0
  80. package/dist/ui.d.ts +2 -0
  81. package/dist/ui.d.ts.map +1 -0
  82. package/dist/ui.js +2 -0
  83. package/package.json +147 -48
  84. package/src/assert.ts +2 -0
  85. package/src/assets.ts +2 -0
  86. package/src/cli-entry.ts +13 -0
  87. package/src/cli.ts +2 -0
  88. package/{dist/component/jsx-runtime.js → src/node-fetch-server/test.ts} +1 -1
  89. package/src/terminal.ts +2 -0
  90. package/src/test/cli.ts +2 -0
  91. package/src/test.ts +2 -0
  92. package/src/ui/accordion.ts +2 -0
  93. package/src/ui/anchor.ts +2 -0
  94. package/src/ui/animation.ts +2 -0
  95. package/src/ui/breadcrumbs.ts +2 -0
  96. package/src/ui/button.ts +2 -0
  97. package/src/ui/combobox.ts +2 -0
  98. package/src/ui/glyph.ts +2 -0
  99. package/src/ui/jsx-dev-runtime.ts +2 -0
  100. package/src/ui/jsx-runtime.ts +2 -0
  101. package/src/ui/listbox.ts +2 -0
  102. package/src/ui/menu.ts +2 -0
  103. package/src/ui/popover.ts +2 -0
  104. package/src/ui/scroll-lock.ts +2 -0
  105. package/src/ui/select.ts +2 -0
  106. package/src/ui/separator.ts +2 -0
  107. package/src/{component → ui}/server.ts +1 -1
  108. package/src/ui/test.ts +2 -0
  109. package/src/ui/theme.ts +2 -0
  110. package/src/ui.ts +2 -0
  111. package/dist/component/jsx-dev-runtime.d.ts +0 -2
  112. package/dist/component/jsx-dev-runtime.d.ts.map +0 -1
  113. package/dist/component/jsx-dev-runtime.js +0 -2
  114. package/dist/component/jsx-runtime.d.ts +0 -2
  115. package/dist/component/jsx-runtime.d.ts.map +0 -1
  116. package/dist/component/server.d.ts +0 -2
  117. package/dist/component/server.d.ts.map +0 -1
  118. package/dist/component.d.ts +0 -2
  119. package/dist/component.d.ts.map +0 -1
  120. package/src/component/jsx-dev-runtime.ts +0 -2
  121. package/src/component/jsx-runtime.ts +0 -2
package/README.md CHANGED
@@ -10,6 +10,47 @@ See [remix.run](https://remix.run) for more information.
10
10
  npm i remix
11
11
  ```
12
12
 
13
+ ## CLI
14
+
15
+ Create a new app with the CLI:
16
+
17
+ ```sh
18
+ npx remix@next new my-remix-app
19
+ ```
20
+
21
+ After installing `remix`, the equivalent local command and the rest of the CLI are available through `remix`:
22
+
23
+ ```sh
24
+ remix new my-remix-app
25
+ remix completion bash >> ~/.bashrc
26
+ remix doctor
27
+ remix doctor --fix
28
+ remix routes
29
+ remix routes --table
30
+ remix routes --table --no-headers
31
+ remix skills install
32
+ remix test
33
+ remix version
34
+ remix --no-color doctor
35
+ ```
36
+
37
+ ## Programmatic CLI
38
+
39
+ ```ts
40
+ import { runRemix } from 'remix/cli'
41
+
42
+ await runRemix(['new', 'my-remix-app'])
43
+ await runRemix(['completion', 'bash'])
44
+ await runRemix(['doctor'])
45
+ await runRemix(['doctor', '--fix'])
46
+ await runRemix(['routes'])
47
+ await runRemix(['routes', '--table'])
48
+ await runRemix(['routes', '--table', '--no-headers'])
49
+ await runRemix(['skills', 'list'])
50
+ await runRemix(['test'])
51
+ await runRemix(['version'])
52
+ ```
53
+
13
54
  ## License
14
55
 
15
56
  See [LICENSE](https://github.com/remix-run/remix/blob/main/LICENSE)
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/assert';
2
+ //# sourceMappingURL=assert.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"assert.d.ts","sourceRoot":"","sources":["../src/assert.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAA"}
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component'
2
+ export * from '@remix-run/assert';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/assets';
2
+ //# sourceMappingURL=assets.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"assets.d.ts","sourceRoot":"","sources":["../src/assets.ts"],"names":[],"mappings":"AACA,cAAc,mBAAmB,CAAA"}
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component';
2
+ export * from '@remix-run/assets';
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ export {};
3
+ //# sourceMappingURL=cli-entry.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli-entry.d.ts","sourceRoot":"","sources":["../src/cli-entry.ts"],"names":[],"mappings":""}
@@ -0,0 +1,12 @@
1
+ #!/usr/bin/env node
2
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
3
+ import * as process from 'node:process';
4
+ import { runRemix } from "./cli.js";
5
+ try {
6
+ let exitCode = await runRemix(process.argv.slice(2));
7
+ process.exit(exitCode);
8
+ }
9
+ catch (error) {
10
+ console.error(error);
11
+ process.exit(1);
12
+ }
package/dist/cli.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/cli';
2
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../src/cli.ts"],"names":[],"mappings":"AACA,cAAc,gBAAgB,CAAA"}
package/dist/cli.js ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/cli';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/node-fetch-server/test';
2
+ //# sourceMappingURL=test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/node-fetch-server/test.ts"],"names":[],"mappings":"AACA,cAAc,mCAAmC,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/node-fetch-server/test';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/terminal';
2
+ //# sourceMappingURL=terminal.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"terminal.d.ts","sourceRoot":"","sources":["../src/terminal.ts"],"names":[],"mappings":"AACA,cAAc,qBAAqB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/terminal';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/test/cli';
2
+ //# sourceMappingURL=cli.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../src/test/cli.ts"],"names":[],"mappings":"AACA,cAAc,qBAAqB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/test/cli';
package/dist/test.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/test';
2
+ //# sourceMappingURL=test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../src/test.ts"],"names":[],"mappings":"AACA,cAAc,iBAAiB,CAAA"}
package/dist/test.js ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/test';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/accordion';
2
+ //# sourceMappingURL=accordion.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"accordion.d.ts","sourceRoot":"","sources":["../../src/ui/accordion.ts"],"names":[],"mappings":"AACA,cAAc,yBAAyB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/accordion';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/anchor';
2
+ //# sourceMappingURL=anchor.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"anchor.d.ts","sourceRoot":"","sources":["../../src/ui/anchor.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/anchor';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/animation';
2
+ //# sourceMappingURL=animation.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"animation.d.ts","sourceRoot":"","sources":["../../src/ui/animation.ts"],"names":[],"mappings":"AACA,cAAc,yBAAyB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/animation';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/breadcrumbs';
2
+ //# sourceMappingURL=breadcrumbs.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"breadcrumbs.d.ts","sourceRoot":"","sources":["../../src/ui/breadcrumbs.ts"],"names":[],"mappings":"AACA,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/breadcrumbs';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/button';
2
+ //# sourceMappingURL=button.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../src/ui/button.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/button';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/combobox';
2
+ //# sourceMappingURL=combobox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"combobox.d.ts","sourceRoot":"","sources":["../../src/ui/combobox.ts"],"names":[],"mappings":"AACA,cAAc,wBAAwB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/combobox';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/glyph';
2
+ //# sourceMappingURL=glyph.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"glyph.d.ts","sourceRoot":"","sources":["../../src/ui/glyph.ts"],"names":[],"mappings":"AACA,cAAc,qBAAqB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/glyph';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/jsx-dev-runtime';
2
+ //# sourceMappingURL=jsx-dev-runtime.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"jsx-dev-runtime.d.ts","sourceRoot":"","sources":["../../src/ui/jsx-dev-runtime.ts"],"names":[],"mappings":"AACA,cAAc,+BAA+B,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/jsx-dev-runtime';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/jsx-runtime';
2
+ //# sourceMappingURL=jsx-runtime.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"jsx-runtime.d.ts","sourceRoot":"","sources":["../../src/ui/jsx-runtime.ts"],"names":[],"mappings":"AACA,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/jsx-runtime';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/listbox';
2
+ //# sourceMappingURL=listbox.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"listbox.d.ts","sourceRoot":"","sources":["../../src/ui/listbox.ts"],"names":[],"mappings":"AACA,cAAc,uBAAuB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/listbox';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/menu';
2
+ //# sourceMappingURL=menu.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"menu.d.ts","sourceRoot":"","sources":["../../src/ui/menu.ts"],"names":[],"mappings":"AACA,cAAc,oBAAoB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/menu';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/popover';
2
+ //# sourceMappingURL=popover.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../src/ui/popover.ts"],"names":[],"mappings":"AACA,cAAc,uBAAuB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/popover';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/scroll-lock';
2
+ //# sourceMappingURL=scroll-lock.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"scroll-lock.d.ts","sourceRoot":"","sources":["../../src/ui/scroll-lock.ts"],"names":[],"mappings":"AACA,cAAc,2BAA2B,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/scroll-lock';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/select';
2
+ //# sourceMappingURL=select.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"select.d.ts","sourceRoot":"","sources":["../../src/ui/select.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/select';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/separator';
2
+ //# sourceMappingURL=separator.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"separator.d.ts","sourceRoot":"","sources":["../../src/ui/separator.ts"],"names":[],"mappings":"AACA,cAAc,yBAAyB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/separator';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/server';
2
+ //# sourceMappingURL=server.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/ui/server.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/server';
2
+ export * from '@remix-run/ui/server';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/test';
2
+ //# sourceMappingURL=test.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"test.d.ts","sourceRoot":"","sources":["../../src/ui/test.ts"],"names":[],"mappings":"AACA,cAAc,oBAAoB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/test';
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui/theme';
2
+ //# sourceMappingURL=theme.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"theme.d.ts","sourceRoot":"","sources":["../../src/ui/theme.ts"],"names":[],"mappings":"AACA,cAAc,qBAAqB,CAAA"}
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/theme';
package/dist/ui.d.ts ADDED
@@ -0,0 +1,2 @@
1
+ export * from '@remix-run/ui';
2
+ //# sourceMappingURL=ui.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../src/ui.ts"],"names":[],"mappings":"AACA,cAAc,eAAe,CAAA"}
package/dist/ui.js ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "remix",
3
- "version": "3.0.0-alpha.4",
4
- "description": "Remix Web Framework",
3
+ "version": "3.0.0-alpha.6",
4
+ "description": "The Remix web framework",
5
5
  "author": "Michael Jackson <mjijackson@gmail.com>",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -17,7 +17,18 @@
17
17
  "src"
18
18
  ],
19
19
  "type": "module",
20
+ "engines": {
21
+ "node": ">=24.3.0"
22
+ },
20
23
  "exports": {
24
+ "./assert": {
25
+ "types": "./dist/assert.d.ts",
26
+ "default": "./dist/assert.js"
27
+ },
28
+ "./assets": {
29
+ "types": "./dist/assets.d.ts",
30
+ "default": "./dist/assets.js"
31
+ },
21
32
  "./async-context-middleware": {
22
33
  "types": "./dist/async-context-middleware.d.ts",
23
34
  "default": "./dist/async-context-middleware.js"
@@ -30,21 +41,9 @@
30
41
  "types": "./dist/auth-middleware.d.ts",
31
42
  "default": "./dist/auth-middleware.js"
32
43
  },
33
- "./component": {
34
- "types": "./dist/component.d.ts",
35
- "default": "./dist/component.js"
36
- },
37
- "./component/jsx-dev-runtime": {
38
- "types": "./dist/component/jsx-dev-runtime.d.ts",
39
- "default": "./dist/component/jsx-dev-runtime.js"
40
- },
41
- "./component/jsx-runtime": {
42
- "types": "./dist/component/jsx-runtime.d.ts",
43
- "default": "./dist/component/jsx-runtime.js"
44
- },
45
- "./component/server": {
46
- "types": "./dist/component/server.d.ts",
47
- "default": "./dist/component/server.js"
44
+ "./cli": {
45
+ "types": "./dist/cli.d.ts",
46
+ "default": "./dist/cli.js"
48
47
  },
49
48
  "./compression-middleware": {
50
49
  "types": "./dist/compression-middleware.d.ts",
@@ -194,6 +193,10 @@
194
193
  "types": "./dist/node-fetch-server.d.ts",
195
194
  "default": "./dist/node-fetch-server.js"
196
195
  },
196
+ "./node-fetch-server/test": {
197
+ "types": "./dist/node-fetch-server/test.d.ts",
198
+ "default": "./dist/node-fetch-server/test.js"
199
+ },
197
200
  "./response/compress": {
198
201
  "types": "./dist/response/compress.d.ts",
199
202
  "default": "./dist/response/compress.js"
@@ -254,6 +257,94 @@
254
257
  "types": "./dist/tar-parser.d.ts",
255
258
  "default": "./dist/tar-parser.js"
256
259
  },
260
+ "./terminal": {
261
+ "types": "./dist/terminal.d.ts",
262
+ "default": "./dist/terminal.js"
263
+ },
264
+ "./test": {
265
+ "types": "./dist/test.d.ts",
266
+ "default": "./dist/test.js"
267
+ },
268
+ "./test/cli": {
269
+ "types": "./dist/test/cli.d.ts",
270
+ "default": "./dist/test/cli.js"
271
+ },
272
+ "./ui": {
273
+ "types": "./dist/ui.d.ts",
274
+ "default": "./dist/ui.js"
275
+ },
276
+ "./ui/accordion": {
277
+ "types": "./dist/ui/accordion.d.ts",
278
+ "default": "./dist/ui/accordion.js"
279
+ },
280
+ "./ui/anchor": {
281
+ "types": "./dist/ui/anchor.d.ts",
282
+ "default": "./dist/ui/anchor.js"
283
+ },
284
+ "./ui/animation": {
285
+ "types": "./dist/ui/animation.d.ts",
286
+ "default": "./dist/ui/animation.js"
287
+ },
288
+ "./ui/breadcrumbs": {
289
+ "types": "./dist/ui/breadcrumbs.d.ts",
290
+ "default": "./dist/ui/breadcrumbs.js"
291
+ },
292
+ "./ui/button": {
293
+ "types": "./dist/ui/button.d.ts",
294
+ "default": "./dist/ui/button.js"
295
+ },
296
+ "./ui/combobox": {
297
+ "types": "./dist/ui/combobox.d.ts",
298
+ "default": "./dist/ui/combobox.js"
299
+ },
300
+ "./ui/glyph": {
301
+ "types": "./dist/ui/glyph.d.ts",
302
+ "default": "./dist/ui/glyph.js"
303
+ },
304
+ "./ui/jsx-dev-runtime": {
305
+ "types": "./dist/ui/jsx-dev-runtime.d.ts",
306
+ "default": "./dist/ui/jsx-dev-runtime.js"
307
+ },
308
+ "./ui/jsx-runtime": {
309
+ "types": "./dist/ui/jsx-runtime.d.ts",
310
+ "default": "./dist/ui/jsx-runtime.js"
311
+ },
312
+ "./ui/listbox": {
313
+ "types": "./dist/ui/listbox.d.ts",
314
+ "default": "./dist/ui/listbox.js"
315
+ },
316
+ "./ui/menu": {
317
+ "types": "./dist/ui/menu.d.ts",
318
+ "default": "./dist/ui/menu.js"
319
+ },
320
+ "./ui/popover": {
321
+ "types": "./dist/ui/popover.d.ts",
322
+ "default": "./dist/ui/popover.js"
323
+ },
324
+ "./ui/scroll-lock": {
325
+ "types": "./dist/ui/scroll-lock.d.ts",
326
+ "default": "./dist/ui/scroll-lock.js"
327
+ },
328
+ "./ui/select": {
329
+ "types": "./dist/ui/select.d.ts",
330
+ "default": "./dist/ui/select.js"
331
+ },
332
+ "./ui/separator": {
333
+ "types": "./dist/ui/separator.d.ts",
334
+ "default": "./dist/ui/separator.js"
335
+ },
336
+ "./ui/server": {
337
+ "types": "./dist/ui/server.d.ts",
338
+ "default": "./dist/ui/server.js"
339
+ },
340
+ "./ui/test": {
341
+ "types": "./dist/ui/test.d.ts",
342
+ "default": "./dist/ui/test.js"
343
+ },
344
+ "./ui/theme": {
345
+ "types": "./dist/ui/theme.d.ts",
346
+ "default": "./dist/ui/theme.js"
347
+ },
257
348
  "./package.json": "./package.json"
258
349
  },
259
350
  "devDependencies": {
@@ -262,43 +353,51 @@
262
353
  "typescript": "^5.9.3"
263
354
  },
264
355
  "dependencies": {
265
- "@remix-run/async-context-middleware": "^0.2.0",
266
- "@remix-run/auth-middleware": "^0.1.0",
267
- "@remix-run/auth": "^0.1.0",
268
- "@remix-run/compression-middleware": "^0.1.4",
269
- "@remix-run/cop-middleware": "^0.1.0",
270
- "@remix-run/component": "^0.6.0",
271
- "@remix-run/cors-middleware": "^0.1.0",
272
- "@remix-run/csrf-middleware": "^0.1.0",
273
- "@remix-run/data-schema": "^0.2.0",
356
+ "@remix-run/assets": "^0.2.0",
357
+ "@remix-run/auth": "^0.2.0",
358
+ "@remix-run/async-context-middleware": "^0.2.1",
359
+ "@remix-run/ui": "^0.1.0",
360
+ "@remix-run/auth-middleware": "^0.1.1",
361
+ "@remix-run/compression-middleware": "^0.1.6",
362
+ "@remix-run/cop-middleware": "^0.1.1",
363
+ "@remix-run/cors-middleware": "^0.1.1",
364
+ "@remix-run/csrf-middleware": "^0.1.1",
274
365
  "@remix-run/cookie": "^0.5.1",
366
+ "@remix-run/data-schema": "^0.3.0",
275
367
  "@remix-run/data-table": "^0.2.0",
276
- "@remix-run/data-table-postgres": "^0.2.0",
277
- "@remix-run/data-table-sqlite": "^0.2.0",
278
- "@remix-run/data-table-mysql": "^0.2.0",
279
- "@remix-run/fetch-proxy": "^0.7.1",
280
- "@remix-run/file-storage": "^0.13.3",
281
- "@remix-run/fetch-router": "^0.18.0",
282
- "@remix-run/file-storage-s3": "^0.1.0",
283
- "@remix-run/form-data-middleware": "^0.2.0",
284
- "@remix-run/form-data-parser": "^0.16.0",
285
- "@remix-run/fs": "^0.4.2",
286
- "@remix-run/headers": "^0.19.0",
368
+ "@remix-run/data-table-mysql": "^0.3.0",
369
+ "@remix-run/data-table-postgres": "^0.3.0",
370
+ "@remix-run/data-table-sqlite": "^0.4.0",
371
+ "@remix-run/fetch-router": "^0.18.1",
372
+ "@remix-run/file-storage-s3": "^0.1.1",
373
+ "@remix-run/file-storage": "^0.13.4",
374
+ "@remix-run/fetch-proxy": "^0.8.0",
375
+ "@remix-run/form-data-middleware": "^0.2.2",
376
+ "@remix-run/form-data-parser": "^0.17.0",
287
377
  "@remix-run/html-template": "^0.3.0",
288
- "@remix-run/lazy-file": "^5.0.2",
289
- "@remix-run/logger-middleware": "^0.1.4",
290
- "@remix-run/method-override-middleware": "^0.1.5",
291
- "@remix-run/mime": "^0.4.0",
292
- "@remix-run/multipart-parser": "^0.15.0",
378
+ "@remix-run/fs": "^0.4.3",
379
+ "@remix-run/lazy-file": "^5.0.3",
380
+ "@remix-run/logger-middleware": "^0.2.0",
381
+ "@remix-run/method-override-middleware": "^0.1.6",
382
+ "@remix-run/headers": "^0.19.0",
383
+ "@remix-run/mime": "^0.4.1",
384
+ "@remix-run/multipart-parser": "^0.16.0",
293
385
  "@remix-run/node-fetch-server": "^0.13.0",
294
- "@remix-run/route-pattern": "^0.20.0",
295
- "@remix-run/session-middleware": "^0.2.0",
386
+ "@remix-run/response": "^0.3.3",
387
+ "@remix-run/route-pattern": "^0.20.1",
388
+ "@remix-run/session-middleware": "^0.2.1",
296
389
  "@remix-run/session-storage-memcache": "^0.1.0",
297
390
  "@remix-run/session-storage-redis": "^0.1.0",
298
- "@remix-run/response": "^0.3.2",
299
- "@remix-run/static-middleware": "^0.4.5",
300
- "@remix-run/tar-parser": "^0.7.0",
301
- "@remix-run/session": "^0.4.1"
391
+ "@remix-run/static-middleware": "^0.4.7",
392
+ "@remix-run/session": "^0.4.1",
393
+ "@remix-run/tar-parser": "^0.7.1",
394
+ "@remix-run/assert": "^0.1.0",
395
+ "@remix-run/cli": "^0.1.0",
396
+ "@remix-run/test": "^0.2.0",
397
+ "@remix-run/terminal": "^0.1.0"
398
+ },
399
+ "bin": {
400
+ "remix": "./dist/cli-entry.js"
302
401
  },
303
402
  "scripts": {
304
403
  "build": "tsc -p tsconfig.build.json",
package/src/assert.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/assert'
package/src/assets.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/assets'
@@ -0,0 +1,13 @@
1
+ #!/usr/bin/env node
2
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
3
+ import * as process from 'node:process'
4
+
5
+ import { runRemix } from './cli.ts'
6
+
7
+ try {
8
+ let exitCode = await runRemix(process.argv.slice(2))
9
+ process.exit(exitCode)
10
+ } catch (error) {
11
+ console.error(error)
12
+ process.exit(1)
13
+ }
package/src/cli.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/cli'
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/jsx-runtime';
2
+ export * from '@remix-run/node-fetch-server/test'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/terminal'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/test/cli'
package/src/test.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/test'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/accordion'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/anchor'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/animation'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/breadcrumbs'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/button'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/combobox'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/glyph'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/jsx-dev-runtime'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/jsx-runtime'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/listbox'
package/src/ui/menu.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/menu'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/popover'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/scroll-lock'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/select'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/separator'
@@ -1,2 +1,2 @@
1
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/server'
2
+ export * from '@remix-run/ui/server'
package/src/ui/test.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/test'
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui/theme'
package/src/ui.ts ADDED
@@ -0,0 +1,2 @@
1
+ // IMPORTANT: This file is auto-generated, please do not edit manually.
2
+ export * from '@remix-run/ui'
@@ -1,2 +0,0 @@
1
- export * from '@remix-run/component/jsx-dev-runtime';
2
- //# sourceMappingURL=jsx-dev-runtime.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jsx-dev-runtime.d.ts","sourceRoot":"","sources":["../../src/component/jsx-dev-runtime.ts"],"names":[],"mappings":"AACA,cAAc,sCAAsC,CAAA"}
@@ -1,2 +0,0 @@
1
- // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/jsx-dev-runtime';
@@ -1,2 +0,0 @@
1
- export * from '@remix-run/component/jsx-runtime';
2
- //# sourceMappingURL=jsx-runtime.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"jsx-runtime.d.ts","sourceRoot":"","sources":["../../src/component/jsx-runtime.ts"],"names":[],"mappings":"AACA,cAAc,kCAAkC,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from '@remix-run/component/server';
2
- //# sourceMappingURL=server.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../src/component/server.ts"],"names":[],"mappings":"AACA,cAAc,6BAA6B,CAAA"}
@@ -1,2 +0,0 @@
1
- export * from '@remix-run/component';
2
- //# sourceMappingURL=component.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"component.d.ts","sourceRoot":"","sources":["../src/component.ts"],"names":[],"mappings":"AACA,cAAc,sBAAsB,CAAA"}
@@ -1,2 +0,0 @@
1
- // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/jsx-dev-runtime'
@@ -1,2 +0,0 @@
1
- // IMPORTANT: This file is auto-generated, please do not edit manually.
2
- export * from '@remix-run/component/jsx-runtime'