extraktr 1.0.2 → 1.0.4
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/index.js +2 -0
- package/package.json +14 -3
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,15 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "extraktr",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "
|
|
5
|
+
"description": "CLI for extracting tasks, decisions, and risks from conversations",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"type": "commonjs",
|
|
8
8
|
"license": "MIT",
|
|
9
|
+
"homepage": "https://extraktr.com",
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "https://github.com/Extraktr/get-extraktr.git"
|
|
13
|
+
},
|
|
9
14
|
"keywords": [
|
|
10
15
|
"extraktr",
|
|
11
16
|
"cli",
|
|
12
|
-
"extraction"
|
|
17
|
+
"extraction",
|
|
18
|
+
"ai",
|
|
19
|
+
"automation",
|
|
20
|
+
"productivity",
|
|
21
|
+
"text-processing",
|
|
22
|
+
"developer-tools",
|
|
23
|
+
"workflow"
|
|
13
24
|
],
|
|
14
25
|
"engines": {
|
|
15
26
|
"node": ">=18.0.0"
|