graphbox 1.0.6 → 1.0.7

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 (3) hide show
  1. package/README.md +10 -0
  2. package/dist/cli.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -23,6 +23,16 @@ GraphBox consolidates three previously separate BibGraph packages into a single,
23
23
  pnpm install graphbox
24
24
  ```
25
25
 
26
+ ## CLI
27
+
28
+ ```bash
29
+ npx graphbox help # Show available commands
30
+ npx graphbox version # Show version
31
+ npx graphbox generate # Generate a graph from a specification
32
+ npx graphbox analyze # Analyze graph properties
33
+ npx graphbox validate # Validate a graph against constraints
34
+ ```
35
+
26
36
  ## Key Features
27
37
 
28
38
  ### Graph Adapters
package/dist/cli.js CHANGED
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env node
2
2
  import * as a from "node:process";
3
- const i = "1.0.5", r = {
3
+ const i = "1.0.6", r = {
4
4
  version: {
5
5
  name: "version",
6
6
  description: "Show version information",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "graphbox",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "Graph Sandbox + Graph Toolbox: Abstract and experimental graph algorithms for academic research",
5
5
  "packageManager": "pnpm@10.27.0",
6
6
  "type": "module",