dsh-m 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 (3) hide show
  1. package/README.md +22 -0
  2. package/index.js +9 -0
  3. package/package.json +25 -0
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # dsh-m
2
+
3
+ **Marketplace for [DeepSeek Harness (DSH)](https://github.com/deepseek-ai) plugins.**
4
+
5
+ `dsh-m` 会收录大量 DSH 插件的安装地址,作为 DSH 插件市场的名称注册与分发入口。
6
+ 当前版本为**占位版本**(name reservation),真正的 marketplace 功能开发中。
7
+
8
+ ## 安装
9
+
10
+ ```bash
11
+ npm install dsh-m
12
+ ```
13
+
14
+ ## Roadmap
15
+
16
+ - [ ] 插件收录清单(名称 / 安装地址 / 版本)
17
+ - [ ] 检索与分类
18
+ - [ ] 与 DSH 插件安装流程集成
19
+
20
+ ## License
21
+
22
+ MIT
package/index.js ADDED
@@ -0,0 +1,9 @@
1
+ 'use strict';
2
+
3
+ const pkg = require('./package.json');
4
+
5
+ module.exports = {
6
+ name: pkg.name,
7
+ version: pkg.version,
8
+ description: pkg.description,
9
+ };
package/package.json ADDED
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "dsh-m",
3
+ "version": "0.0.1",
4
+ "description": "Marketplace / registry of install addresses for DeepSeek Harness (DSH) plugins. Name reserved — real CLI coming.",
5
+ "license": "MIT",
6
+ "main": "index.js",
7
+ "files": [
8
+ "index.js",
9
+ "README.md"
10
+ ],
11
+ "keywords": [
12
+ "dsh",
13
+ "deepseek-harness",
14
+ "plugin",
15
+ "marketplace",
16
+ "registry"
17
+ ],
18
+ "engines": {
19
+ "node": ">=18"
20
+ },
21
+ "publishConfig": {
22
+ "registry": "https://registry.npmjs.org/",
23
+ "access": "public"
24
+ }
25
+ }