@lexbuild/usc 1.4.2 → 1.5.1
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 +0 -10
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -99,16 +99,6 @@ Each title produces Markdown files with YAML frontmatter. The output structure d
|
|
|
99
99
|
| `chapter` | `title-NN/chapter-NN/chapter-NN.md` | `_meta.json` per title, `README.md` per title |
|
|
100
100
|
| `title` | `title-NN.md` | Enriched frontmatter only (no sidecar files) |
|
|
101
101
|
|
|
102
|
-
See the [output format specification](https://github.com/chris-c-thomas/LexBuild/blob/main/docs/output-format.md) for details.
|
|
103
|
-
|
|
104
|
-
## Documentation
|
|
105
|
-
|
|
106
|
-
- [LexBuild Monorepo](https://github.com/chris-c-thomas/LexBuild)
|
|
107
|
-
- [Architecture](https://github.com/chris-c-thomas/LexBuild/blob/main/docs/architecture.md)
|
|
108
|
-
- [Output Format](https://github.com/chris-c-thomas/LexBuild/blob/main/docs/output-format.md)
|
|
109
|
-
- [XML Element Reference](https://github.com/chris-c-thomas/LexBuild/blob/main/docs/xml-element-reference.md)
|
|
110
|
-
- [Extending](https://github.com/chris-c-thomas/LexBuild/blob/main/docs/extending.md)
|
|
111
|
-
|
|
112
102
|
## License
|
|
113
103
|
|
|
114
104
|
[MIT](https://github.com/chris-c-thomas/LexBuild/blob/main/LICENSE)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lexbuild/usc",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.1",
|
|
4
4
|
"description": "Federal U.S. Code specific element handlers and downloader for LexBuild",
|
|
5
5
|
"author": "Chris Thomas",
|
|
6
6
|
"license": "MIT",
|
|
@@ -41,18 +41,9 @@
|
|
|
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
|
-
},
|
|
53
44
|
"dependencies": {
|
|
54
|
-
"
|
|
55
|
-
"
|
|
45
|
+
"yauzl": "^3.2.0",
|
|
46
|
+
"@lexbuild/core": "1.5.1"
|
|
56
47
|
},
|
|
57
48
|
"devDependencies": {
|
|
58
49
|
"@types/node": "^25.3.2",
|
|
@@ -66,5 +57,14 @@
|
|
|
66
57
|
},
|
|
67
58
|
"publishConfig": {
|
|
68
59
|
"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
|
+
}
|