opencode-gbk-tools 0.1.16 → 0.1.17
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 +1 -0
- package/dist/release-manifest.json +1 -1
- package/package.json +3 -1
package/README.md
CHANGED
|
@@ -205,6 +205,7 @@ A:不要。现在优先用 `mode="insertAfter"` 或 `mode="insertBefore"`,
|
|
|
205
205
|
|
|
206
206
|
| 版本 | 说明 |
|
|
207
207
|
|------|------|
|
|
208
|
+
| 0.1.17 | 修复 OpenCode 以 npm plugin 方式加载包时缺少 `./server` 导出导致的插件加载失败问题;补充 `main` 与 `./server` 入口兼容性 |
|
|
208
209
|
| 0.1.16 | 去掉专属 `gbk-engine` agent 安装链路,改为通过 plugin + tools 让全部 agents 统一支持 `text_*` / `gbk_*`;同步更新安装说明 |
|
|
209
210
|
| 0.1.15 | 为 GBK 大文件统一引入行字节索引与流式读/搜/改路径,提升局部编辑、搜索与大块修改时的性能、稳定性与准确性 |
|
|
210
211
|
| 0.1.14 | 重新发布当前稳定产物,核对 `npm pack --dry-run` 输出包含完整 `dist/`,为下一次公开发布提供一致的打包基线 |
|
package/package.json
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-gbk-tools",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.17",
|
|
4
4
|
"description": "Auto-encoding text tools plus GBK/GB18030 tools for OpenCode",
|
|
5
5
|
"type": "module",
|
|
6
|
+
"main": "./dist/plugin/index.js",
|
|
6
7
|
"license": "MIT",
|
|
7
8
|
"exports": {
|
|
8
9
|
".": "./dist/plugin/index.js",
|
|
10
|
+
"./server": "./dist/plugin/index.js",
|
|
9
11
|
"./cli": "./dist/cli/index.js"
|
|
10
12
|
},
|
|
11
13
|
"bin": {
|