@carlesandres/house 0.4.13 → 0.5.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.
- package/CHANGELOG.md +32 -2
- package/README.md +10 -8
- package/dist/bin.js +92 -0
- package/dist/index.js +10005 -0
- package/package.json +15 -3
- package/src/Browser.tsx +0 -1210
- package/src/CommandPalette.tsx +0 -214
- package/src/Footer.tsx +0 -258
- package/src/Header.tsx +0 -71
- package/src/PromptRow.tsx +0 -51
- package/src/Spinner.tsx +0 -39
- package/src/StatusIndicator.tsx +0 -55
- package/src/StatusPopover.tsx +0 -166
- package/src/brand.ts +0 -7
- package/src/cli/argv.ts +0 -179
- package/src/commands/buildCommands.ts +0 -98
- package/src/commands/paletteOnlyCommands.ts +0 -27
- package/src/commands/score.ts +0 -78
- package/src/commands/types.ts +0 -26
- package/src/config/load.ts +0 -381
- package/src/config/save.ts +0 -95
- package/src/discovery/filter.ts +0 -148
- package/src/discovery/show.ts +0 -48
- package/src/discovery/walk.ts +0 -209
- package/src/index.tsx +0 -464
- package/src/io/clipboard.ts +0 -53
- package/src/io/editor.ts +0 -162
- package/src/io/readFile.ts +0 -14
- package/src/keymap/browser.ts +0 -335
- package/src/keymap/displayKey.ts +0 -17
- package/src/keymap/keymap.ts +0 -95
- package/src/layout/resolve.ts +0 -52
- package/src/layout/sidebarEmptyState.ts +0 -7
- package/src/layout/sidebarRow.ts +0 -69
- package/src/markdown/frontmatter.ts +0 -62
- package/src/serve/css.ts +0 -120
- package/src/serve/openBrowser.ts +0 -19
- package/src/serve/render.ts +0 -56
- package/src/serve/server.ts +0 -166
- package/src/theme/atom.ts +0 -23
- package/src/theme/colors.ts +0 -86
- package/src/theme/loader.ts +0 -110
- package/src/theme/registry.ts +0 -12
- package/src/theme/resolve.ts +0 -168
- package/src/theme/themes/aura.json +0 -58
- package/src/theme/themes/ayu.json +0 -69
- package/src/theme/themes/carbonfox.json +0 -201
- package/src/theme/themes/catppuccin-frappe.json +0 -186
- package/src/theme/themes/catppuccin-macchiato.json +0 -186
- package/src/theme/themes/catppuccin.json +0 -212
- package/src/theme/themes/cobalt2.json +0 -181
- package/src/theme/themes/cursor.json +0 -202
- package/src/theme/themes/dracula.json +0 -172
- package/src/theme/themes/everforest.json +0 -194
- package/src/theme/themes/flexoki.json +0 -190
- package/src/theme/themes/github.json +0 -186
- package/src/theme/themes/gruvbox.json +0 -195
- package/src/theme/themes/kanagawa.json +0 -180
- package/src/theme/themes/lucent-orng.json +0 -186
- package/src/theme/themes/material.json +0 -188
- package/src/theme/themes/matrix.json +0 -180
- package/src/theme/themes/mercury.json +0 -198
- package/src/theme/themes/monokai.json +0 -174
- package/src/theme/themes/nightowl.json +0 -174
- package/src/theme/themes/nord.json +0 -176
- package/src/theme/themes/one-dark.json +0 -184
- package/src/theme/themes/opencode.json +0 -198
- package/src/theme/themes/orng.json +0 -202
- package/src/theme/themes/osaka-jade.json +0 -193
- package/src/theme/themes/palenight.json +0 -175
- package/src/theme/themes/rosepine.json +0 -187
- package/src/theme/themes/solarized.json +0 -180
- package/src/theme/themes/synthwave84.json +0 -179
- package/src/theme/themes/tokyonight.json +0 -196
- package/src/theme/themes/vercel.json +0 -198
- package/src/theme/themes/vesper.json +0 -171
- package/src/theme/themes/zenburn.json +0 -176
- package/src/theme/types.ts +0 -115
- package/src/tips.ts +0 -88
- package/src/ui/middleTruncate.ts +0 -27
- package/src/update/cache.ts +0 -77
- package/src/update/check.ts +0 -165
- package/src/update/compare.ts +0 -41
- package/src/update/notice.ts +0 -29
- package/src/update/runtime.ts +0 -48
- package/src/update/useUpdateNotice.ts +0 -24
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carlesandres/house",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "TUI-first markdown reader on opentui",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -23,7 +23,8 @@
|
|
|
23
23
|
"house"
|
|
24
24
|
],
|
|
25
25
|
"files": [
|
|
26
|
-
"
|
|
26
|
+
"dist/bin.js",
|
|
27
|
+
"dist/index.js",
|
|
27
28
|
"README.md",
|
|
28
29
|
"LICENSE",
|
|
29
30
|
"CHANGELOG.md"
|
|
@@ -34,7 +35,7 @@
|
|
|
34
35
|
"registry": "https://registry.npmjs.org/"
|
|
35
36
|
},
|
|
36
37
|
"bin": {
|
|
37
|
-
"house": "
|
|
38
|
+
"house": "dist/bin.js"
|
|
38
39
|
},
|
|
39
40
|
"scripts": {
|
|
40
41
|
"dev": "bun --watch src/index.tsx",
|
|
@@ -46,10 +47,21 @@
|
|
|
46
47
|
"format:check": "oxfmt --check src/",
|
|
47
48
|
"test": "bun test",
|
|
48
49
|
"test:pty": "HOUSE_PTY=1 bun test test/pty/",
|
|
50
|
+
"version:set": "bun run dev/set-version.ts",
|
|
51
|
+
"build:cli": "bun run dev/build-cli.ts",
|
|
52
|
+
"build:standalone": "bun run dev/build-standalone.ts",
|
|
53
|
+
"build:npm-packages": "bun run dev/build-npm-packages.ts",
|
|
49
54
|
"build:themes": "bun run dev/build-themes.ts",
|
|
55
|
+
"prepack": "bun run build:cli",
|
|
50
56
|
"repro:pty-codeblocks": "bun run dev/repro-pty-codeblocks.ts",
|
|
51
57
|
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true"
|
|
52
58
|
},
|
|
59
|
+
"optionalDependencies": {
|
|
60
|
+
"@carlesandres/house-darwin-arm64": "0.5.0",
|
|
61
|
+
"@carlesandres/house-darwin-x64": "0.5.0",
|
|
62
|
+
"@carlesandres/house-linux-arm64": "0.5.0",
|
|
63
|
+
"@carlesandres/house-linux-x64": "0.5.0"
|
|
64
|
+
},
|
|
53
65
|
"dependencies": {
|
|
54
66
|
"@effect/atom-react": "4.0.0-beta.60",
|
|
55
67
|
"@opentui/core": "0.2.15",
|