remix 3.0.0-alpha.5 → 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 (112) hide show
  1. package/README.md +41 -0
  2. package/dist/cli-entry.d.ts +3 -0
  3. package/dist/cli-entry.d.ts.map +1 -0
  4. package/dist/cli-entry.js +12 -0
  5. package/dist/cli.d.ts +2 -0
  6. package/dist/cli.d.ts.map +1 -0
  7. package/{src/component.ts → dist/cli.js} +1 -1
  8. package/dist/node-fetch-server/test.d.ts +2 -0
  9. package/dist/node-fetch-server/test.d.ts.map +1 -0
  10. package/dist/{component/jsx-runtime.js → node-fetch-server/test.js} +1 -1
  11. package/dist/terminal.d.ts +2 -0
  12. package/dist/terminal.d.ts.map +1 -0
  13. package/dist/{component.js → terminal.js} +1 -1
  14. package/dist/test/cli.d.ts +2 -0
  15. package/dist/test/cli.d.ts.map +1 -0
  16. package/dist/test/cli.js +2 -0
  17. package/dist/ui/accordion.d.ts +2 -0
  18. package/dist/ui/accordion.d.ts.map +1 -0
  19. package/dist/ui/accordion.js +2 -0
  20. package/dist/ui/anchor.d.ts +2 -0
  21. package/dist/ui/anchor.d.ts.map +1 -0
  22. package/dist/ui/anchor.js +2 -0
  23. package/dist/ui/animation.d.ts +2 -0
  24. package/dist/ui/animation.d.ts.map +1 -0
  25. package/dist/ui/animation.js +2 -0
  26. package/dist/ui/breadcrumbs.d.ts +2 -0
  27. package/dist/ui/breadcrumbs.d.ts.map +1 -0
  28. package/dist/ui/breadcrumbs.js +2 -0
  29. package/dist/ui/button.d.ts +2 -0
  30. package/dist/ui/button.d.ts.map +1 -0
  31. package/dist/ui/button.js +2 -0
  32. package/dist/ui/combobox.d.ts +2 -0
  33. package/dist/ui/combobox.d.ts.map +1 -0
  34. package/dist/ui/combobox.js +2 -0
  35. package/dist/ui/glyph.d.ts +2 -0
  36. package/dist/ui/glyph.d.ts.map +1 -0
  37. package/dist/ui/glyph.js +2 -0
  38. package/dist/ui/jsx-dev-runtime.d.ts +2 -0
  39. package/dist/ui/jsx-dev-runtime.d.ts.map +1 -0
  40. package/dist/ui/jsx-dev-runtime.js +2 -0
  41. package/dist/ui/jsx-runtime.d.ts +2 -0
  42. package/dist/ui/jsx-runtime.d.ts.map +1 -0
  43. package/dist/ui/jsx-runtime.js +2 -0
  44. package/dist/ui/listbox.d.ts +2 -0
  45. package/dist/ui/listbox.d.ts.map +1 -0
  46. package/dist/ui/listbox.js +2 -0
  47. package/dist/ui/menu.d.ts +2 -0
  48. package/dist/ui/menu.d.ts.map +1 -0
  49. package/dist/ui/menu.js +2 -0
  50. package/dist/ui/popover.d.ts +2 -0
  51. package/dist/ui/popover.d.ts.map +1 -0
  52. package/dist/ui/popover.js +2 -0
  53. package/dist/ui/scroll-lock.d.ts +2 -0
  54. package/dist/ui/scroll-lock.d.ts.map +1 -0
  55. package/dist/ui/scroll-lock.js +2 -0
  56. package/dist/ui/select.d.ts +2 -0
  57. package/dist/ui/select.d.ts.map +1 -0
  58. package/dist/ui/select.js +2 -0
  59. package/dist/ui/separator.d.ts +2 -0
  60. package/dist/ui/separator.d.ts.map +1 -0
  61. package/dist/ui/separator.js +2 -0
  62. package/dist/ui/server.d.ts +2 -0
  63. package/dist/ui/server.d.ts.map +1 -0
  64. package/dist/{component → ui}/server.js +1 -1
  65. package/dist/ui/test.d.ts +2 -0
  66. package/dist/ui/test.d.ts.map +1 -0
  67. package/dist/ui/test.js +2 -0
  68. package/dist/ui/theme.d.ts +2 -0
  69. package/dist/ui/theme.d.ts.map +1 -0
  70. package/dist/ui/theme.js +2 -0
  71. package/dist/ui.d.ts +2 -0
  72. package/dist/ui.d.ts.map +1 -0
  73. package/dist/ui.js +2 -0
  74. package/package.json +125 -44
  75. package/src/cli-entry.ts +13 -0
  76. package/src/cli.ts +2 -0
  77. package/{dist/remix-test.js → src/node-fetch-server/test.ts} +1 -2
  78. package/src/terminal.ts +2 -0
  79. package/src/test/cli.ts +2 -0
  80. package/src/ui/accordion.ts +2 -0
  81. package/src/ui/anchor.ts +2 -0
  82. package/src/ui/animation.ts +2 -0
  83. package/src/ui/breadcrumbs.ts +2 -0
  84. package/src/ui/button.ts +2 -0
  85. package/src/ui/combobox.ts +2 -0
  86. package/src/ui/glyph.ts +2 -0
  87. package/src/ui/jsx-dev-runtime.ts +2 -0
  88. package/src/ui/jsx-runtime.ts +2 -0
  89. package/src/ui/listbox.ts +2 -0
  90. package/src/ui/menu.ts +2 -0
  91. package/src/ui/popover.ts +2 -0
  92. package/src/ui/scroll-lock.ts +2 -0
  93. package/src/ui/select.ts +2 -0
  94. package/src/ui/separator.ts +2 -0
  95. package/src/{component → ui}/server.ts +1 -1
  96. package/src/ui/test.ts +2 -0
  97. package/src/ui/theme.ts +2 -0
  98. package/src/ui.ts +2 -0
  99. package/dist/component/jsx-dev-runtime.d.ts +0 -2
  100. package/dist/component/jsx-dev-runtime.d.ts.map +0 -1
  101. package/dist/component/jsx-dev-runtime.js +0 -2
  102. package/dist/component/jsx-runtime.d.ts +0 -2
  103. package/dist/component/jsx-runtime.d.ts.map +0 -1
  104. package/dist/component/server.d.ts +0 -2
  105. package/dist/component/server.d.ts.map +0 -1
  106. package/dist/component.d.ts +0 -2
  107. package/dist/component.d.ts.map +0 -1
  108. package/dist/remix-test.d.ts +0 -3
  109. package/dist/remix-test.d.ts.map +0 -1
  110. package/src/component/jsx-dev-runtime.ts +0 -2
  111. package/src/component/jsx-runtime.ts +0 -2
  112. package/src/remix-test.ts +0 -3
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,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"}
@@ -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/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"}
@@ -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
+ 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"}
@@ -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/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';
@@ -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.5",
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,6 +17,9 @@
17
17
  "src"
18
18
  ],
19
19
  "type": "module",
20
+ "engines": {
21
+ "node": ">=24.3.0"
22
+ },
20
23
  "exports": {
21
24
  "./assert": {
22
25
  "types": "./dist/assert.d.ts",
@@ -38,21 +41,9 @@
38
41
  "types": "./dist/auth-middleware.d.ts",
39
42
  "default": "./dist/auth-middleware.js"
40
43
  },
41
- "./component": {
42
- "types": "./dist/component.d.ts",
43
- "default": "./dist/component.js"
44
- },
45
- "./component/jsx-dev-runtime": {
46
- "types": "./dist/component/jsx-dev-runtime.d.ts",
47
- "default": "./dist/component/jsx-dev-runtime.js"
48
- },
49
- "./component/jsx-runtime": {
50
- "types": "./dist/component/jsx-runtime.d.ts",
51
- "default": "./dist/component/jsx-runtime.js"
52
- },
53
- "./component/server": {
54
- "types": "./dist/component/server.d.ts",
55
- "default": "./dist/component/server.js"
44
+ "./cli": {
45
+ "types": "./dist/cli.d.ts",
46
+ "default": "./dist/cli.js"
56
47
  },
57
48
  "./compression-middleware": {
58
49
  "types": "./dist/compression-middleware.d.ts",
@@ -202,6 +193,10 @@
202
193
  "types": "./dist/node-fetch-server.d.ts",
203
194
  "default": "./dist/node-fetch-server.js"
204
195
  },
196
+ "./node-fetch-server/test": {
197
+ "types": "./dist/node-fetch-server/test.d.ts",
198
+ "default": "./dist/node-fetch-server/test.js"
199
+ },
205
200
  "./response/compress": {
206
201
  "types": "./dist/response/compress.d.ts",
207
202
  "default": "./dist/response/compress.js"
@@ -262,10 +257,94 @@
262
257
  "types": "./dist/tar-parser.d.ts",
263
258
  "default": "./dist/tar-parser.js"
264
259
  },
260
+ "./terminal": {
261
+ "types": "./dist/terminal.d.ts",
262
+ "default": "./dist/terminal.js"
263
+ },
265
264
  "./test": {
266
265
  "types": "./dist/test.d.ts",
267
266
  "default": "./dist/test.js"
268
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
+ },
269
348
  "./package.json": "./package.json"
270
349
  },
271
350
  "devDependencies": {
@@ -274,49 +353,51 @@
274
353
  "typescript": "^5.9.3"
275
354
  },
276
355
  "dependencies": {
277
- "@remix-run/assets": "^0.1.0",
278
- "@remix-run/auth": "^0.1.1",
279
- "@remix-run/auth-middleware": "^0.1.1",
280
- "@remix-run/component": "^0.7.0",
356
+ "@remix-run/assets": "^0.2.0",
357
+ "@remix-run/auth": "^0.2.0",
281
358
  "@remix-run/async-context-middleware": "^0.2.1",
282
- "@remix-run/compression-middleware": "^0.1.5",
359
+ "@remix-run/ui": "^0.1.0",
360
+ "@remix-run/auth-middleware": "^0.1.1",
361
+ "@remix-run/compression-middleware": "^0.1.6",
283
362
  "@remix-run/cop-middleware": "^0.1.1",
284
363
  "@remix-run/cors-middleware": "^0.1.1",
285
364
  "@remix-run/csrf-middleware": "^0.1.1",
286
365
  "@remix-run/cookie": "^0.5.1",
366
+ "@remix-run/data-schema": "^0.3.0",
287
367
  "@remix-run/data-table": "^0.2.0",
288
368
  "@remix-run/data-table-mysql": "^0.3.0",
289
369
  "@remix-run/data-table-postgres": "^0.3.0",
290
- "@remix-run/data-table-sqlite": "^0.3.0",
291
- "@remix-run/fetch-proxy": "^0.7.1",
292
- "@remix-run/file-storage-s3": "^0.1.0",
293
- "@remix-run/data-schema": "^0.2.0",
294
- "@remix-run/form-data-parser": "^0.16.0",
295
- "@remix-run/fs": "^0.4.2",
296
- "@remix-run/form-data-middleware": "^0.2.1",
297
- "@remix-run/headers": "^0.19.0",
298
- "@remix-run/html-template": "^0.3.0",
299
- "@remix-run/lazy-file": "^5.0.2",
300
- "@remix-run/logger-middleware": "^0.1.5",
370
+ "@remix-run/data-table-sqlite": "^0.4.0",
301
371
  "@remix-run/fetch-router": "^0.18.1",
302
- "@remix-run/file-storage": "^0.13.3",
303
- "@remix-run/multipart-parser": "^0.15.0",
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",
377
+ "@remix-run/html-template": "^0.3.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",
304
385
  "@remix-run/node-fetch-server": "^0.13.0",
305
- "@remix-run/response": "^0.3.2",
386
+ "@remix-run/response": "^0.3.3",
306
387
  "@remix-run/route-pattern": "^0.20.1",
307
- "@remix-run/session": "^0.4.1",
308
388
  "@remix-run/session-middleware": "^0.2.1",
309
389
  "@remix-run/session-storage-memcache": "^0.1.0",
310
- "@remix-run/mime": "^0.4.0",
311
- "@remix-run/method-override-middleware": "^0.1.6",
312
390
  "@remix-run/session-storage-redis": "^0.1.0",
313
- "@remix-run/static-middleware": "^0.4.6",
314
- "@remix-run/tar-parser": "^0.7.0",
315
- "@remix-run/test": "^0.1.0",
316
- "@remix-run/assert": "^0.1.0"
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"
317
398
  },
318
399
  "bin": {
319
- "remix-test": "./dist/remix-test.js"
400
+ "remix": "./dist/cli-entry.js"
320
401
  },
321
402
  "scripts": {
322
403
  "build": "tsc -p tsconfig.build.json",
@@ -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,3 +1,2 @@
1
- #!/usr/bin/env node
2
1
  // IMPORTANT: This file is auto-generated, please do not edit manually.
3
- import '@remix-run/test/cli';
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'
@@ -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,3 +0,0 @@
1
- #!/usr/bin/env node
2
- import '@remix-run/test/cli';
3
- //# sourceMappingURL=remix-test.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"remix-test.d.ts","sourceRoot":"","sources":["../src/remix-test.ts"],"names":[],"mappings":";AAEA,OAAO,qBAAqB,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'
package/src/remix-test.ts DELETED
@@ -1,3 +0,0 @@
1
- #!/usr/bin/env node
2
- // IMPORTANT: This file is auto-generated, please do not edit manually.
3
- import '@remix-run/test/cli'