dsh-builder 0.0.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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +15 -0
  3. package/index.js +10 -0
  4. package/package.json +22 -0
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 chenjingcheng
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # dsh-builder
2
+
3
+ 构建 dsh plugin 的开发、测试和验证工具。
4
+
5
+ > 当前为占位版本(0.0.1),用于保留 npm 包名与 GitHub 仓库名。
6
+
7
+ ## 规划功能
8
+
9
+ - 开发:dsh plugin 的脚手架生成、代码结构与规范检查
10
+ - 测试:插件本地测试运行器、mock 环境与断言辅助
11
+ - 验证:对 DSH runtime 的真实加载验证与兼容性检查
12
+
13
+ ## License
14
+
15
+ MIT
package/index.js ADDED
@@ -0,0 +1,10 @@
1
+ 'use strict';
2
+
3
+ // dsh-builder: 构建 dsh plugin 的开发、测试和验证工具
4
+ // 当前为名称占位版本,CLI 与核心能力将在后续版本中实现。
5
+
6
+ module.exports = {
7
+ name: 'dsh-builder',
8
+ version: '0.0.1',
9
+ status: 'placeholder'
10
+ };
package/package.json ADDED
@@ -0,0 +1,22 @@
1
+ {
2
+ "name": "dsh-builder",
3
+ "version": "0.0.1",
4
+ "description": "构建 dsh plugin 的开发、测试和验证工具",
5
+ "main": "index.js",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "dsh",
9
+ "plugin",
10
+ "builder",
11
+ "deepseek-harness"
12
+ ],
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "git+https://github.com/chenjingcheng/dsh-builder.git"
16
+ },
17
+ "files": [
18
+ "index.js",
19
+ "README.md",
20
+ "LICENSE"
21
+ ]
22
+ }