xparse-cli 2.2.1-beta.3 → 2.2.1
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/README.md +3 -3
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -6,12 +6,12 @@ Textin xParser 文档解析命令行工具,基于 [TextIn xParse API](https://
|
|
|
6
6
|
|
|
7
7
|
## 安装
|
|
8
8
|
|
|
9
|
-
### npm
|
|
9
|
+
### npm
|
|
10
10
|
|
|
11
|
-
需要 Node.js 18
|
|
11
|
+
需要 Node.js 18 或更高版本:
|
|
12
12
|
|
|
13
13
|
```bash
|
|
14
|
-
npm install -g xparse-cli
|
|
14
|
+
npm install -g xparse-cli
|
|
15
15
|
```
|
|
16
16
|
|
|
17
17
|
安装后可运行 `xparse-cli version` 检查版本。
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xparse-cli",
|
|
3
|
-
"version": "2.2.1
|
|
3
|
+
"version": "2.2.1",
|
|
4
4
|
"description": "TextIn xParse command-line client for document parsing",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -19,15 +19,15 @@
|
|
|
19
19
|
"node": ">=18"
|
|
20
20
|
},
|
|
21
21
|
"optionalDependencies": {
|
|
22
|
-
"xparse-cli-darwin-amd64": "2.2.1
|
|
23
|
-
"xparse-cli-darwin-arm64": "2.2.1
|
|
24
|
-
"xparse-cli-linux-amd64": "2.2.1
|
|
25
|
-
"xparse-cli-linux-arm64": "2.2.1
|
|
26
|
-
"xparse-cli-windows-amd64": "2.2.1
|
|
27
|
-
"xparse-cli-windows-arm64": "2.2.1
|
|
22
|
+
"xparse-cli-darwin-amd64": "2.2.1",
|
|
23
|
+
"xparse-cli-darwin-arm64": "2.2.1",
|
|
24
|
+
"xparse-cli-linux-amd64": "2.2.1",
|
|
25
|
+
"xparse-cli-linux-arm64": "2.2.1",
|
|
26
|
+
"xparse-cli-windows-amd64": "2.2.1",
|
|
27
|
+
"xparse-cli-windows-arm64": "2.2.1"
|
|
28
28
|
},
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public",
|
|
31
|
-
"tag": "
|
|
31
|
+
"tag": "latest"
|
|
32
32
|
}
|
|
33
33
|
}
|