@lexbuild/usc 1.0.2 → 1.0.3
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 +1 -1
- package/package.json +18 -18
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# @lexbuild/usc
|
|
2
2
|
|
|
3
3
|
[](https://www.npmjs.com/package/@lexbuild/usc)
|
|
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
|
|
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lexbuild/usc",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"description": "Federal U.S. Code specific element handlers and downloader for lexbuild",
|
|
5
5
|
"author": "Chris Thomas",
|
|
6
6
|
"license": "MIT",
|
|
7
|
-
"homepage": "https://github.com/chris-c-thomas/lexbuild/tree/main/packages/usc#readme",
|
|
8
|
-
"bugs": {
|
|
9
|
-
"url": "https://github.com/chris-c-thomas/lexbuild/issues"
|
|
10
|
-
},
|
|
11
7
|
"repository": {
|
|
12
8
|
"type": "git",
|
|
13
|
-
"url": "
|
|
9
|
+
"url": "https://github.com/chris-c-thomas/lexbuild.git",
|
|
14
10
|
"directory": "packages/usc"
|
|
15
11
|
},
|
|
12
|
+
"homepage": "https://github.com/chris-c-thomas/lexbuild/tree/main/packages/usc",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/chris-c-thomas/lexbuild/issues"
|
|
15
|
+
},
|
|
16
16
|
"keywords": [
|
|
17
17
|
"lexbuild",
|
|
18
18
|
"legal-tech",
|
|
@@ -41,9 +41,18 @@
|
|
|
41
41
|
"files": [
|
|
42
42
|
"dist"
|
|
43
43
|
],
|
|
44
|
+
"scripts": {
|
|
45
|
+
"build": "tsup",
|
|
46
|
+
"dev": "tsup --watch",
|
|
47
|
+
"typecheck": "tsc --noEmit",
|
|
48
|
+
"test": "vitest run",
|
|
49
|
+
"test:watch": "vitest",
|
|
50
|
+
"lint": "eslint src",
|
|
51
|
+
"lint:fix": "eslint src --fix"
|
|
52
|
+
},
|
|
44
53
|
"dependencies": {
|
|
45
|
-
"
|
|
46
|
-
"
|
|
54
|
+
"@lexbuild/core": "workspace:*",
|
|
55
|
+
"yauzl": "^3.2.0"
|
|
47
56
|
},
|
|
48
57
|
"devDependencies": {
|
|
49
58
|
"@types/node": "^25.3.2",
|
|
@@ -57,14 +66,5 @@
|
|
|
57
66
|
},
|
|
58
67
|
"publishConfig": {
|
|
59
68
|
"access": "public"
|
|
60
|
-
},
|
|
61
|
-
"scripts": {
|
|
62
|
-
"build": "tsup",
|
|
63
|
-
"dev": "tsup --watch",
|
|
64
|
-
"typecheck": "tsc --noEmit",
|
|
65
|
-
"test": "vitest run",
|
|
66
|
-
"test:watch": "vitest",
|
|
67
|
-
"lint": "eslint src",
|
|
68
|
-
"lint:fix": "eslint src --fix"
|
|
69
69
|
}
|
|
70
|
-
}
|
|
70
|
+
}
|