@lexbuild/cli 1.0.4 → 1.0.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 (2) hide show
  1. package/README.md +5 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -6,15 +6,17 @@
6
6
 
7
7
  This package is part of the [LexBuild](https://github.com/chris-c-thomas/lexbuild) monorepo, a tool that converts U.S. legislative XML into structured Markdown optimized for AI, RAG pipelines, and semantic search. See the monorepo for full documentation, architecture details, and contribution guidelines.
8
8
 
9
- It provides the CLI entry point for downloading and converting legal and civic texts. Currently supports the [United States Code](https://uscode.house.gov/) via [`@lexbuild/usc`](https://www.npmjs.com/package/@lexbuild/usc), with additional sources (CFR, state statutes) planned.
9
+ It provides the CLI entry point for downloading and converting legal and civic texts. Built on [`@lexbuild/core`](https://www.npmjs.com/package/@lexbuild/core) for shared parsing and rendering infrastructure, and also [`@lexbuild/usc`](https://www.npmjs.com/package/@lexbuild/usc) for [United States Code](https://uscode.house.gov/) support. Implementing support for additional sources (CFR, state statutes) is planned.
10
10
 
11
11
  ## Install
12
12
 
13
+ Install globally
14
+
13
15
  ```bash
14
16
  npm install -g @lexbuild/cli
15
17
  ```
16
18
 
17
- Or run directly with npx:
19
+ Run directly with npx:
18
20
 
19
21
  ```bash
20
22
  npx @lexbuild/cli download --all
@@ -103,7 +105,7 @@ The full U.S. Code — all 54 titles, 60,000+ sections, ~85 million estimated to
103
105
 
104
106
  ## Documentation
105
107
 
106
- - [Monorepo README](https://github.com/chris-c-thomas/lexbuild#readme)
108
+ - [LexBuild Monorepo](https://github.com/chris-c-thomas/lexbuild)
107
109
  - [Architecture](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/architecture.md)
108
110
  - [Output Format](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/output-format.md)
109
111
  - [XML Element Reference](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/xml-element-reference.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lexbuild/cli",
3
- "version": "1.0.4",
3
+ "version": "1.0.6",
4
4
  "description": "Compiler for legal and civic texts. Converts disparate statutory data into structured formats optimized for AI, RAG, and semantic search.",
5
5
  "author": "Chris Thomas",
6
6
  "license": "MIT",
@@ -54,8 +54,8 @@
54
54
  "ora": "^8.2.0",
55
55
  "pino": "^9.6.0",
56
56
  "pino-pretty": "^13.0.0",
57
- "@lexbuild/core": "1.0.4",
58
- "@lexbuild/usc": "1.0.4"
57
+ "@lexbuild/core": "1.0.6",
58
+ "@lexbuild/usc": "1.0.6"
59
59
  },
60
60
  "devDependencies": {
61
61
  "@types/node": "^25.3.2",