@lexbuild/usc 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.
- package/README.md +3 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
# @lexbuild/usc
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/@lexbuild/core)
|
|
4
4
|
[](https://github.com/chris-c-thomas/lexbuild)
|
|
5
5
|
|
|
6
6
|
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.
|
|
7
7
|
|
|
8
|
-
It converts official [USLM](https://uscode.house.gov/download/resources/USLM-User-Guide.pdf)
|
|
8
|
+
It converts official [USLM XML](https://uscode.house.gov/download/resources/USLM-User-Guide.pdf) from the [Office of the Law Revision Counsel](https://uscode.house.gov/) (OLRC) into structured Markdown and is built on [`@lexbuild/core`](https://www.npmjs.com/package/@lexbuild/core) for shared parsing and rendering infrastructure. It also provides a downloader for fetching the XML directly from OLRC. End users typically interact with this package through [`@lexbuild/cli`](https://www.npmjs.com/package/@lexbuild/cli).
|
|
9
9
|
|
|
10
10
|
## Install
|
|
11
11
|
|
|
@@ -110,7 +110,7 @@ See the [output format specification](https://github.com/chris-c-thomas/lexbuild
|
|
|
110
110
|
|
|
111
111
|
## Documentation
|
|
112
112
|
|
|
113
|
-
- [Monorepo
|
|
113
|
+
- [LexBuild Monorepo](https://github.com/chris-c-thomas/lexbuild)
|
|
114
114
|
- [Architecture](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/architecture.md)
|
|
115
115
|
- [Output Format](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/output-format.md)
|
|
116
116
|
- [XML Element Reference](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/xml-element-reference.md)
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lexbuild/usc",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Federal U.S. Code specific element handlers and downloader for
|
|
3
|
+
"version": "1.0.6",
|
|
4
|
+
"description": "Federal U.S. Code specific element handlers and downloader for LexBuild",
|
|
5
5
|
"author": "Chris Thomas",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
],
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"yauzl": "^3.2.0",
|
|
46
|
-
"@lexbuild/core": "1.0.
|
|
46
|
+
"@lexbuild/core": "1.0.6"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/node": "^25.3.2",
|