extraktr 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/index.js +2 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -44,6 +44,7 @@ Global options:
44
44
  --version, -v Show package version
45
45
 
46
46
  Run: extraktr extract --help (flags, env vars, input rules)
47
+ ⭐ Star on GitHub: https://github.com/Extraktr/get-extraktr
47
48
  `);
48
49
  }
49
50
 
@@ -77,6 +78,7 @@ Examples:
77
78
  Get-Content sample.txt | extraktr extract --stdin
78
79
  extraktr extract --file sample.txt --format json
79
80
  extraktr extract --file sample.txt --format json --output out.json
81
+ ⭐ Star on GitHub: https://github.com/Extraktr/get-extraktr
80
82
  `);
81
83
  }
82
84
  const VALID_FORMATS = new Set(["text", "json", "markdown"]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "extraktr",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "private": false,
5
5
  "description": "Terminal client for Extraktr — calls the same POST /api/extract contract as the web app.",
6
6
  "main": "index.js",