xparse-cli 2.4.3 → 2.4.4-beta.2
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 +0 -18
- package/package.json +8 -8
package/README.md
CHANGED
|
@@ -121,24 +121,6 @@ make npm-publish VERSION=2.3.1-beta.1 CONFIRM_PUBLISH=1
|
|
|
121
121
|
manifest、staging 目录和七个待发布包完全一致。stable 版本发布到 `latest`,
|
|
122
122
|
`-beta.*` 版本发布到 `beta`。
|
|
123
123
|
|
|
124
|
-
## DeepSeek Harness
|
|
125
|
-
|
|
126
|
-
仓库同时包含 `@intsig-xparse/dsh-xparse` Bundle 的实现。当前 Harness RC
|
|
127
|
-
依赖要求 Node.js 22.19 或更高版本。开发构建和 Docker 验证命令为:
|
|
128
|
-
|
|
129
|
-
```bash
|
|
130
|
-
python3 scripts/prepare-dsh-xparse.py \
|
|
131
|
-
--skill-dir /path/to/xparse-skills/skills/xparse-parse
|
|
132
|
-
npm run dsh:typecheck
|
|
133
|
-
npm run dsh:test
|
|
134
|
-
npm run dsh:build
|
|
135
|
-
```
|
|
136
|
-
|
|
137
|
-
正式装配要求外部 Skill 仓库位于 `release-lock.json` 锁定的 commit 且工作树干净,
|
|
138
|
-
并要求当前 xparse-client 工作树干净。本地开发可以显式使用
|
|
139
|
-
`--allow-snapshot --allow-dirty`。Bundle 的详细安装、凭据、安全边界和已知限制见
|
|
140
|
-
`packages/dsh-xparse/README.md`。
|
|
141
|
-
|
|
142
124
|
## 快速开始
|
|
143
125
|
|
|
144
126
|
### 1. 零配置解析(自动使用免费额度)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xparse-cli",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.4-beta.2",
|
|
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.4.
|
|
23
|
-
"xparse-cli-darwin-arm64": "2.4.
|
|
24
|
-
"xparse-cli-linux-amd64": "2.4.
|
|
25
|
-
"xparse-cli-linux-arm64": "2.4.
|
|
26
|
-
"xparse-cli-windows-amd64": "2.4.
|
|
27
|
-
"xparse-cli-windows-arm64": "2.4.
|
|
22
|
+
"xparse-cli-darwin-amd64": "2.4.4-beta.2",
|
|
23
|
+
"xparse-cli-darwin-arm64": "2.4.4-beta.2",
|
|
24
|
+
"xparse-cli-linux-amd64": "2.4.4-beta.2",
|
|
25
|
+
"xparse-cli-linux-arm64": "2.4.4-beta.2",
|
|
26
|
+
"xparse-cli-windows-amd64": "2.4.4-beta.2",
|
|
27
|
+
"xparse-cli-windows-arm64": "2.4.4-beta.2"
|
|
28
28
|
},
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public",
|
|
31
|
-
"tag": "
|
|
31
|
+
"tag": "beta"
|
|
32
32
|
}
|
|
33
33
|
}
|