@lexbuild/cli 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.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +19 -19
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # @lexbuild/cli
2
2
 
3
- [![npm](https://img.shields.io/npm/v/%40lexbuild%2Fcli?style=flat-square)](https://www.npmjs.com/package/@lexbuild/cli)
4
- [![CI](https://img.shields.io/github/actions/workflow/status/chris-c-thomas/lexbuild/ci.yml?style=flat-square&label=CI)](https://github.com/chris-c-thomas/lexbuild/actions/workflows/ci.yml)
5
- [![license](https://img.shields.io/github/license/chris-c-thomas/lexbuild?style=flat-square)](https://github.com/chris-c-thomas/lexbuild/blob/main/LICENSE)
3
+ [![npm](https://img.shields.io/npm/v/%40lexbuild%2Fcli?style=for-the-badge)](https://www.npmjs.com/package/@lexbuild/cli)
4
+ [![CI](https://img.shields.io/github/actions/workflow/status/chris-c-thomas/lexbuild/ci.yml?style=for-the-badge&label=CI)](https://github.com/chris-c-thomas/lexbuild/actions/workflows/ci.yml)
5
+ [![license](https://img.shields.io/github/license/chris-c-thomas/lexbuild?style=for-the-badge)](https://github.com/chris-c-thomas/lexbuild)
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
 
package/package.json CHANGED
@@ -1,18 +1,18 @@
1
1
  {
2
2
  "name": "@lexbuild/cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
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",
7
- "homepage": "https://github.com/chris-c-thomas/lexbuild/tree/main/packages/cli#readme",
8
- "bugs": {
9
- "url": "https://github.com/chris-c-thomas/lexbuild/issues"
10
- },
11
7
  "repository": {
12
8
  "type": "git",
13
- "url": "git+https://github.com/chris-c-thomas/lexbuild.git",
9
+ "url": "https://github.com/chris-c-thomas/lexbuild.git",
14
10
  "directory": "packages/cli"
15
11
  },
12
+ "homepage": "https://github.com/chris-c-thomas/lexbuild/tree/main/packages/cli",
13
+ "bugs": {
14
+ "url": "https://github.com/chris-c-thomas/lexbuild/issues"
15
+ },
16
16
  "keywords": [
17
17
  "lexbuild",
18
18
  "legal-tech",
@@ -47,15 +47,24 @@
47
47
  "files": [
48
48
  "dist"
49
49
  ],
50
+ "scripts": {
51
+ "build": "tsup",
52
+ "dev": "tsup --watch",
53
+ "typecheck": "tsc --noEmit",
54
+ "test": "vitest run",
55
+ "test:watch": "vitest",
56
+ "lint": "eslint src",
57
+ "lint:fix": "eslint src --fix"
58
+ },
50
59
  "dependencies": {
60
+ "@lexbuild/core": "workspace:*",
61
+ "@lexbuild/usc": "workspace:*",
51
62
  "chalk": "^5.6.2",
52
63
  "cli-table3": "^0.6.5",
53
64
  "commander": "^13.1.0",
54
65
  "ora": "^8.2.0",
55
66
  "pino": "^9.6.0",
56
- "pino-pretty": "^13.0.0",
57
- "@lexbuild/core": "1.0.2",
58
- "@lexbuild/usc": "1.0.2"
67
+ "pino-pretty": "^13.0.0"
59
68
  },
60
69
  "devDependencies": {
61
70
  "@types/node": "^25.3.2",
@@ -68,14 +77,5 @@
68
77
  },
69
78
  "publishConfig": {
70
79
  "access": "public"
71
- },
72
- "scripts": {
73
- "build": "tsup",
74
- "dev": "tsup --watch",
75
- "typecheck": "tsc --noEmit",
76
- "test": "vitest run",
77
- "test:watch": "vitest",
78
- "lint": "eslint src",
79
- "lint:fix": "eslint src --fix"
80
80
  }
81
- }
81
+ }