@lexbuild/core 1.4.1 → 1.5.0

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 +3 -11
  2. package/package.json +14 -14
package/README.md CHANGED
@@ -1,9 +1,9 @@
1
1
  # @lexbuild/core
2
2
 
3
3
  [![npm](https://img.shields.io/npm/v/%40lexbuild%2Fcore?style=for-the-badge)](https://www.npmjs.com/package/@lexbuild/core)
4
- [![license](https://img.shields.io/github/license/chris-c-thomas/lexbuild?style=for-the-badge)](https://github.com/chris-c-thomas/lexbuild)
4
+ [![license](https://img.shields.io/github/license/chris-c-thomas/LexBuild?style=for-the-badge)](https://github.com/chris-c-thomas/LexBuild)
5
5
 
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.
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
8
  It provides the foundational building blocks for XML parsing infrastructure, AST definitions, and Markdown rendering for use by [`@lexbuild/usc`](https://www.npmjs.com/package/@lexbuild/usc) and [`@lexbuild/cli`](https://www.npmjs.com/package/@lexbuild/cli).
9
9
 
@@ -89,14 +89,6 @@ import { USLM_NS, XHTML_NS, LEVEL_ELEMENTS, CONTENT_ELEMENTS } from "@lexbuild/c
89
89
  | `FORMAT_VERSION` | Output format version (`"1.0.0"`) |
90
90
  | `GENERATOR` | Generator string for frontmatter |
91
91
 
92
- ## Documentation
93
-
94
- - [LexBuild Monorepo](https://github.com/chris-c-thomas/lexbuild)
95
- - [Architecture](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/architecture.md)
96
- - [Output Format](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/output-format.md)
97
- - [XML Element Reference](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/xml-element-reference.md)
98
- - [Extending](https://github.com/chris-c-thomas/lexbuild/blob/main/docs/extending.md)
99
-
100
92
  ## License
101
93
 
102
- [MIT](https://github.com/chris-c-thomas/lexbuild/blob/main/LICENSE)
94
+ [MIT](https://github.com/chris-c-thomas/LexBuild/blob/main/LICENSE)
package/package.json CHANGED
@@ -1,17 +1,17 @@
1
1
  {
2
2
  "name": "@lexbuild/core",
3
- "version": "1.4.1",
3
+ "version": "1.5.0",
4
4
  "description": "Core AST definitions, parsing infrastructure, and format-agnostic renderers for the LexBuild ecosystem.",
5
5
  "author": "Chris Thomas",
6
6
  "license": "MIT",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "https://github.com/chris-c-thomas/lexbuild.git",
9
+ "url": "https://github.com/chris-c-thomas/LexBuild.git",
10
10
  "directory": "packages/core"
11
11
  },
12
- "homepage": "https://github.com/chris-c-thomas/lexbuild/tree/main/packages/core",
12
+ "homepage": "https://github.com/chris-c-thomas/LexBuild/tree/main/packages/core",
13
13
  "bugs": {
14
- "url": "https://github.com/chris-c-thomas/lexbuild/issues"
14
+ "url": "https://github.com/chris-c-thomas/LexBuild/issues"
15
15
  },
16
16
  "keywords": [
17
17
  "lexbuild",
@@ -40,6 +40,15 @@
40
40
  "files": [
41
41
  "dist"
42
42
  ],
43
+ "scripts": {
44
+ "build": "tsup",
45
+ "dev": "tsup --watch",
46
+ "typecheck": "tsc --noEmit",
47
+ "test": "vitest run",
48
+ "test:watch": "vitest",
49
+ "lint": "eslint src",
50
+ "lint:fix": "eslint src --fix"
51
+ },
43
52
  "dependencies": {
44
53
  "saxes": "^6.0.0",
45
54
  "yaml": "^2.7.0",
@@ -56,14 +65,5 @@
56
65
  },
57
66
  "publishConfig": {
58
67
  "access": "public"
59
- },
60
- "scripts": {
61
- "build": "tsup",
62
- "dev": "tsup --watch",
63
- "typecheck": "tsc --noEmit",
64
- "test": "vitest run",
65
- "test:watch": "vitest",
66
- "lint": "eslint src",
67
- "lint:fix": "eslint src --fix"
68
68
  }
69
- }
69
+ }