@carlesandres/house 0.5.0 → 0.5.2

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/package.json CHANGED
@@ -1,12 +1,13 @@
1
1
  {
2
2
  "name": "@carlesandres/house",
3
- "version": "0.5.0",
3
+ "version": "0.5.2",
4
4
  "description": "TUI-first markdown reader on opentui",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "git+https://github.com/carlesandres/house.git"
9
+ "url": "git+https://github.com/carlesandres/house.git",
10
+ "directory": "apps/house"
10
11
  },
11
12
  "bugs": {
12
13
  "url": "https://github.com/carlesandres/house/issues"
@@ -25,8 +26,6 @@
25
26
  "files": [
26
27
  "dist/bin.js",
27
28
  "dist/index.js",
28
- "README.md",
29
- "LICENSE",
30
29
  "CHANGELOG.md"
31
30
  ],
32
31
  "publishConfig": {
@@ -38,29 +37,32 @@
38
37
  "house": "dist/bin.js"
39
38
  },
40
39
  "scripts": {
40
+ "build": "bun run build:cli",
41
+ "build:cli": "bun run dev/build-cli.ts",
42
+ "build:npm-main": "bun run dev/build-npm-main.ts",
43
+ "build:npm-packages": "bun run dev/build-npm-packages.ts",
44
+ "build:standalone": "bun run dev/build-standalone.ts",
45
+ "build:themes": "bun run dev/build-themes.ts",
41
46
  "dev": "bun --watch src/index.tsx",
42
- "start": "bun run src/index.tsx",
43
- "record-demo": "bash recordings/record-demo.sh",
44
- "typecheck": "tsc --noEmit",
45
- "lint": "oxlint --tsconfig tsconfig.json src/",
46
47
  "format": "oxfmt src/",
47
48
  "format:check": "oxfmt --check src/",
49
+ "lint": "oxlint --tsconfig tsconfig.json src/ test/ dev/",
50
+ "npm:pack": "bun run build:npm-main && npm pack --dry-run dist/npm/main",
51
+ "record-demo": "bash recordings/record-demo.sh",
52
+ "release": "bun run dev/release.ts",
53
+ "repro:pty-codeblocks": "bun run dev/repro-pty-codeblocks.ts",
54
+ "start": "bun run src/index.tsx",
48
55
  "test": "bun test",
49
56
  "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",
54
- "build:themes": "bun run dev/build-themes.ts",
55
- "prepack": "bun run build:cli",
56
- "repro:pty-codeblocks": "bun run dev/repro-pty-codeblocks.ts",
57
- "prepare": "git config core.hooksPath .githooks 2>/dev/null || true"
57
+ "typecheck": "tsc --noEmit",
58
+ "verify:github": "bun test test/github-emulation.test.ts",
59
+ "version:set": "bun run dev/set-version.ts"
58
60
  },
59
61
  "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"
62
+ "@carlesandres/house-darwin-arm64": "0.5.2",
63
+ "@carlesandres/house-darwin-x64": "0.5.2",
64
+ "@carlesandres/house-linux-arm64": "0.5.2",
65
+ "@carlesandres/house-linux-x64": "0.5.2"
64
66
  },
65
67
  "dependencies": {
66
68
  "@effect/atom-react": "4.0.0-beta.60",
@@ -71,12 +73,15 @@
71
73
  "ignore": "^7.0.5",
72
74
  "marked": "^18.0.4",
73
75
  "react": "19.2.6",
74
- "scheduler": "0.27.0"
76
+ "scheduler": "0.27.0",
77
+ "string-width": "7.2.0",
78
+ "web-tree-sitter": "0.25.10"
75
79
  },
76
80
  "devDependencies": {
77
81
  "@effect/language-service": "0.86.2",
78
82
  "@types/bun": "1.3.14",
79
83
  "@types/react": "19.2.15",
84
+ "emulate": "0.9.0",
80
85
  "oxfmt": "0.51.0",
81
86
  "oxlint": "1.66.0",
82
87
  "tuistory": "^0.8.0",