@deepseek-ai/dsh-sdk-app 0.1.2-alpha.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/LICENSE +21 -0
- package/README.i18n.yaml +6 -0
- package/README.md +70 -0
- package/README.zh.md +70 -0
- package/cordis.patch.yml +21 -0
- package/lib/index.js +45 -0
- package/lib/invariant.js +23 -0
- package/lib/types/index.d.ts +29 -0
- package/lib/types/invariant.d.ts +16 -0
- package/package.json +56 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 DeepSeek
|
|
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.i18n.yaml
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# Bilingual-pair consistency record (docs/i18n/README.md): the git blob hash of each
|
|
2
|
+
# side as of the last confirmed-consistent state. Both languages carry equal authority;
|
|
3
|
+
# after editing either side, bring the other along and re-record with:
|
|
4
|
+
# pnpm run verify-translation-pairing --write packages/bundle/sdk-app/README.md
|
|
5
|
+
README.md: 36b1964d6a22a3fa1ddc384cdf5f973b51fc1ca4
|
|
6
|
+
README.zh.md: b4871e937ec1f6a7e8b03ac09a0bd03bbb0f55ca
|
package/README.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "SDK stdio application profile for users and maintainers launching a JSON-RPC harness runtime."
|
|
3
|
+
kind: "package-bundle"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# `@deepseek-ai/dsh-sdk-app`
|
|
7
|
+
|
|
8
|
+
English | [中文](README.zh.md)
|
|
9
|
+
|
|
10
|
+
## Summary
|
|
11
|
+
|
|
12
|
+
The SDK stdio application as a `dsh` profile bundle over [`dsh-base`](../base/README.md). It inherits the base's disabled module-HMR policy; its patch sets the coding-agent persona, mounts an app-owned zero-option command provider, and starts [`dsh-sdk-jsonrpc-server`](../../sdk/server/README.md) only after that provider accepts the invocation. `dsh --profile sdk --help` therefore writes help and exits without claiming stdin or stdout. The standalone [`sdk-minimal`](../sdk-minimal/README.md) bundle reuses the same startup provider with its own profile name.
|
|
13
|
+
|
|
14
|
+
## Table of Contents
|
|
15
|
+
|
|
16
|
+
- [Use this package](#use-this-package)
|
|
17
|
+
- [Model Experience](#model-experience)
|
|
18
|
+
- [Known Limitations and Deferred Work](#known-limitations-and-deferred-work)
|
|
19
|
+
- [Dev Note](#dev-note)
|
|
20
|
+
|
|
21
|
+
-----
|
|
22
|
+
|
|
23
|
+
<a id="use-this-package"></a>
|
|
24
|
+
## Use this package
|
|
25
|
+
|
|
26
|
+
The startup provider binds stdin EOF to the launcher's bounded successful shutdown. SDK protocol `shutdown`, SIGINT, and SIGTERM retain their owning server or launcher paths; disposal drains the root profile tree and persistence. Stdout is reserved for newline-delimited JSON-RPC frames. The bundle disables model-generated session titles because the SDK exposes no title surface; deterministic fallback titles remain durable without an auxiliary model request. The inherited projection cache checkpoints SDK-created sessions for later consumers; its durability barrier flushes each covered log prefix before publishing the cache row and may split otherwise coalesced JSONL runs. A deployment selects a different complete composition through profile bundles and patch files, not another app bin.
|
|
27
|
+
|
|
28
|
+
| Config | Default | Behavior |
|
|
29
|
+
|---|---|---|
|
|
30
|
+
| `profile` | `sdk` | Profile name rendered in command help; a bundle mounting this provider sets its own shipped profile name. |
|
|
31
|
+
|
|
32
|
+
`DSH_MAX_TOKENS_AS_SUCCESS` retains the SDK deployment mapping: unset or JSON `true` reports token-limited subagent completion as accepted, while JSON `false` reports it as an error. Provider/model and workspace cwd arrive through the SDK initialization request; the base profile owns adapters, tools, persistence, policy, settings, and credentials.
|
|
33
|
+
|
|
34
|
+
-----
|
|
35
|
+
|
|
36
|
+
<a id="model-experience"></a>
|
|
37
|
+
## Model Experience
|
|
38
|
+
|
|
39
|
+
### SDK coding-agent persona
|
|
40
|
+
|
|
41
|
+
#### What the model sees
|
|
42
|
+
|
|
43
|
+
The profile supplies `You are a coding agent powered by the {{model}} model. Your working directory is {{cwd}}.` before the base tool and context contributions. The exact SDK initialization route and session cwd resolve the placeholders.
|
|
44
|
+
|
|
45
|
+
#### Token effect
|
|
46
|
+
|
|
47
|
+
One short stable persona plus the data-dependent base prompt sections and selected tool schemas.
|
|
48
|
+
|
|
49
|
+
#### KV Cache effect
|
|
50
|
+
|
|
51
|
+
Stable for a fixed profile, provider, model, and tool roster. Profile changes take effect on the next process because the shipped SDK profile uses startup-only patches.
|
|
52
|
+
|
|
53
|
+
## Known Limitations and Deferred Work
|
|
54
|
+
|
|
55
|
+
<a id="known-limitations-and-deferred-work"></a>
|
|
56
|
+
|
|
57
|
+
- **A profile can omit the SDK server** — a custom profile selected by the TypeScript client must retain this bundle or another `dsh-sdk-jsonrpc-server` row; client initialization fails when no peer answers.
|
|
58
|
+
- **User plugins can violate stdout purity** — profile and per-launch patches are trusted application composition. The shipped bundle writes no non-protocol stdout, but it cannot contain an arbitrary inserted plugin.
|
|
59
|
+
- **Configuration changes require restart** — the shipped `sdk` profile uses `patchReload: startup` so one stdio connection never observes a replacement server or Agent dependency.
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
<a id="dev-note"></a>
|
|
63
|
+
### Dev Note
|
|
64
|
+
|
|
65
|
+
<details>
|
|
66
|
+
<summary>Working context for maintainers — click to expand</summary>
|
|
67
|
+
|
|
68
|
+
None.
|
|
69
|
+
|
|
70
|
+
</details>
|
package/README.zh.md
ADDED
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "面向启动 JSON-RPC harness 运行时的用户与维护者,说明 SDK stdio 应用 profile。"
|
|
3
|
+
kind: "package-bundle"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# `@deepseek-ai/dsh-sdk-app`
|
|
7
|
+
|
|
8
|
+
[English](README.md) | 中文
|
|
9
|
+
|
|
10
|
+
## 概述
|
|
11
|
+
|
|
12
|
+
以 [`dsh-base`](../base/README.zh.md) 为基础的 SDK stdio 应用 `dsh` profile 组合包。它继承 base 默认禁用模块 HMR(热模块替换)的策略;其 patch 设置 coding agent(编程智能体)persona、挂载应用自有的零选项命令提供方,并且只在该提供方接受调用后启动 [`dsh-sdk-jsonrpc-server`](../../sdk/server/README.zh.md)。因此,`dsh --profile sdk --help` 会写出 help 并退出,不会占用 stdin 或 stdout。独立的 [`sdk-minimal`](../sdk-minimal/README.zh.md) bundle 复用同一个启动提供方,并提供自己的 profile 名称。
|
|
13
|
+
|
|
14
|
+
## 目录
|
|
15
|
+
|
|
16
|
+
- [使用本包](#use-this-package)
|
|
17
|
+
- [模型体验](#model-experience)
|
|
18
|
+
- [已知限制与延期工作](#known-limitations-and-deferred-work)
|
|
19
|
+
- [开发备注](#dev-note)
|
|
20
|
+
|
|
21
|
+
-----
|
|
22
|
+
|
|
23
|
+
<a id="use-this-package"></a>
|
|
24
|
+
## 使用本包
|
|
25
|
+
|
|
26
|
+
启动提供方把 stdin EOF 接到启动器的有界成功关闭流程。SDK 协议 `shutdown`、SIGINT 与 SIGTERM 继续使用各自所属的 server 或启动器路径;dispose(资源释放)会排空根 profile 配置树与持久化。stdout 专用于按换行分隔的 JSON-RPC 帧。SDK 不提供 title 表层,因此本组合包禁用模型生成的 session title;确定性的 fallback title 仍会持久化,但不发起辅助模型请求。继承的投影缓存会为 SDK 创建的会话写入检查点,供后续消费方使用;其持久性屏障会在发布缓存行前 flush 所覆盖的日志前缀,因此可能拆分原本会合并的 JSONL 行。部署通过 profile 组合包与 patch 文件选择另一套完整组合,而不是使用另一个应用 bin。
|
|
27
|
+
|
|
28
|
+
| 配置 | 默认值 | 行为 |
|
|
29
|
+
|---|---|---|
|
|
30
|
+
| `profile` | `sdk` | 命令帮助中显示的 profile 名称;挂载此提供方的 bundle 会设置自己的随附 profile 名称。 |
|
|
31
|
+
|
|
32
|
+
`DSH_MAX_TOKENS_AS_SUCCESS` 保留 SDK 部署映射:未设置或 JSON `true` 把 token 达限的 subagent 完成报告为已接受,JSON `false` 则报告为错误。模型提供方/模型与工作区 cwd 通过 SDK 初始化请求传入;base profile 拥有适配器、工具、持久化、策略、settings 与 credentials。
|
|
33
|
+
|
|
34
|
+
-----
|
|
35
|
+
|
|
36
|
+
<a id="model-experience"></a>
|
|
37
|
+
## 模型体验
|
|
38
|
+
|
|
39
|
+
### SDK coding agent persona
|
|
40
|
+
|
|
41
|
+
#### 模型看到什么
|
|
42
|
+
|
|
43
|
+
profile 会在 base 工具与上下文贡献之前提供 `You are a coding agent powered by the {{model}} model. Your working directory is {{cwd}}.`。确切的 SDK 初始化路由与会话 cwd 会解析其中的占位符。
|
|
44
|
+
|
|
45
|
+
#### Token 影响
|
|
46
|
+
|
|
47
|
+
一段简短稳定的 persona,加上随数据变化的 base 提示词段落与所选工具 schema。
|
|
48
|
+
|
|
49
|
+
#### KV Cache 影响
|
|
50
|
+
|
|
51
|
+
对固定 profile、提供方、模型与工具清单保持稳定。由于随附 SDK profile 使用仅启动时 patch,profile 变化会在下一个进程生效。
|
|
52
|
+
|
|
53
|
+
## 已知限制与延期工作
|
|
54
|
+
|
|
55
|
+
<a id="known-limitations-and-deferred-work"></a>
|
|
56
|
+
|
|
57
|
+
- **profile 可以省略 SDK server**:TypeScript client 选择的自定义 profile 必须保留本组合包或另一个 `dsh-sdk-jsonrpc-server` 配置项;没有 peer 响应时,client 初始化会失败。
|
|
58
|
+
- **用户插件可以破坏 stdout 纯净性**:profile 与逐次启动 patch 属于受信任应用组合。随附组合包不会向 stdout 写入非协议内容,但无法约束任意插入插件。
|
|
59
|
+
- **配置变化需要重启**:随附 `sdk` profile 使用 `patchReload: startup`,因此一个 stdio 连接不会观察到 server 或 Agent 依赖被替换。
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
<a id="dev-note"></a>
|
|
63
|
+
### 开发备注
|
|
64
|
+
|
|
65
|
+
<details>
|
|
66
|
+
<summary>维护者工作上下文——点击展开</summary>
|
|
67
|
+
|
|
68
|
+
无。
|
|
69
|
+
|
|
70
|
+
</details>
|
package/cordis.patch.yml
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# The SDK application over dsh-base. Stdout belongs exclusively to JSON-RPC.
|
|
2
|
+
|
|
3
|
+
- id: system-prompt
|
|
4
|
+
config:
|
|
5
|
+
persona: >-
|
|
6
|
+
You are a coding agent powered by the {{model}} model. Your working directory is {{cwd}}.
|
|
7
|
+
|
|
8
|
+
- id: session-title-llm
|
|
9
|
+
disabled: true
|
|
10
|
+
|
|
11
|
+
- insert:
|
|
12
|
+
- id: sdk-app-startup
|
|
13
|
+
name: '@deepseek-ai/dsh-sdk-app'
|
|
14
|
+
config:
|
|
15
|
+
profile: sdk
|
|
16
|
+
|
|
17
|
+
- id: sdk-jsonrpc-server
|
|
18
|
+
name: '@deepseek-ai/dsh-sdk-jsonrpc-server'
|
|
19
|
+
inject: [sdkAppStartup, loader]
|
|
20
|
+
config:
|
|
21
|
+
maxTokensAsSuccess: !!js "process.env.DSH_MAX_TOKENS_AS_SUCCESS === undefined ? true : JSON.parse(process.env.DSH_MAX_TOKENS_AS_SUCCESS)"
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { Command } from "commander";
|
|
2
|
+
import z from "@deepseek-ai/schemastery";
|
|
3
|
+
import { exitOnStdinEnd, parseCmdline } from "@deepseek-ai/dsh-cmdline";
|
|
4
|
+
//#region lib/types/index.js
|
|
5
|
+
/**
|
|
6
|
+
* The SDK profile's command-line and stdin-lifetime provider. A successful
|
|
7
|
+
* parse publishes {@link SDK_APP_STARTUP_SERVICE}; the JSON-RPC server waits
|
|
8
|
+
* for that service, so help starts no transport.
|
|
9
|
+
* @module @deepseek-ai/dsh-sdk-app
|
|
10
|
+
*/
|
|
11
|
+
/** Stable Cordis plugin name. */
|
|
12
|
+
const name = "sdk-app-startup";
|
|
13
|
+
/** Launcher service required before this app can parse its invocation. */
|
|
14
|
+
const inject = ["cmdlineArgs"];
|
|
15
|
+
/** Service the JSON-RPC server row waits for before claiming stdio. */
|
|
16
|
+
const SDK_APP_STARTUP_SERVICE = "sdkAppStartup";
|
|
17
|
+
/** Validate and default SDK stdio startup configuration. */
|
|
18
|
+
const Config = z.object({ profile: z.string().default("sdk") });
|
|
19
|
+
/**
|
|
20
|
+
* Build this app's zero-option command and help.
|
|
21
|
+
* @param profile - selected profile name rendered in the command grammar.
|
|
22
|
+
* @returns a fresh program for one invocation.
|
|
23
|
+
*/
|
|
24
|
+
function sdkCommand(profile) {
|
|
25
|
+
return new Command().name(`dsh --profile ${profile}`).description("Serve DeepSeek Harness SDK clients over stdio JSON-RPC.").helpOption("-h, --help", "show this help").addHelpText("after", `
|
|
26
|
+
Example:
|
|
27
|
+
dsh --profile ${profile} serve one SDK runtime until its client disconnects
|
|
28
|
+
`);
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* Accept an SDK profile invocation, publish readiness, and bind EOF to the
|
|
32
|
+
* launcher's bounded shutdown.
|
|
33
|
+
* @param ctx - plugin context carrying command-line and exit launcher values.
|
|
34
|
+
* @param config - selected profile identity for command help.
|
|
35
|
+
*/
|
|
36
|
+
function apply(ctx, config = {}) {
|
|
37
|
+
const program = sdkCommand(config.profile ?? "sdk");
|
|
38
|
+
program.action(() => {
|
|
39
|
+
exitOnStdinEnd(ctx, "sdk-app.stdin");
|
|
40
|
+
ctx.provide(SDK_APP_STARTUP_SERVICE, { accepted: true });
|
|
41
|
+
});
|
|
42
|
+
parseCmdline(ctx, program);
|
|
43
|
+
}
|
|
44
|
+
//#endregion
|
|
45
|
+
export { Config, SDK_APP_STARTUP_SERVICE, apply, inject, name };
|
package/lib/invariant.js
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
//#region lib/types/invariant.js
|
|
2
|
+
/**
|
|
3
|
+
* Package-owned invariant companion for `@deepseek-ai/dsh-sdk-app`.
|
|
4
|
+
* @module @deepseek-ai/dsh-sdk-app/invariant
|
|
5
|
+
*/
|
|
6
|
+
const PACKAGE_NAME = "@deepseek-ai/dsh-sdk-app";
|
|
7
|
+
/** Cordis companion plugin name. */
|
|
8
|
+
const name = "sdk-app-invariant";
|
|
9
|
+
/** Service required before the companion can register. */
|
|
10
|
+
const inject = ["invariants"];
|
|
11
|
+
/**
|
|
12
|
+
* No runtime invariant: the bundle adds a process transport and startup latch;
|
|
13
|
+
* source/built stdio tests own frame purity, help exclusion, and shutdown.
|
|
14
|
+
*/
|
|
15
|
+
const install = () => {};
|
|
16
|
+
/**
|
|
17
|
+
* Register this package's invariant companion.
|
|
18
|
+
* @param ctx - Cordis context carrying the invariant service.
|
|
19
|
+
* @returns the installed registration's disposer after setup succeeds.
|
|
20
|
+
*/
|
|
21
|
+
const apply = (ctx) => Promise.resolve(ctx.invariants.register(PACKAGE_NAME, install));
|
|
22
|
+
//#endregion
|
|
23
|
+
export { apply, inject, name };
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The SDK profile's command-line and stdin-lifetime provider. A successful
|
|
3
|
+
* parse publishes {@link SDK_APP_STARTUP_SERVICE}; the JSON-RPC server waits
|
|
4
|
+
* for that service, so help starts no transport.
|
|
5
|
+
* @module @deepseek-ai/dsh-sdk-app
|
|
6
|
+
*/
|
|
7
|
+
import type { Context } from '@deepseek-ai/cordis';
|
|
8
|
+
import z from '@deepseek-ai/schemastery';
|
|
9
|
+
/** Stable Cordis plugin name. */
|
|
10
|
+
export declare const name = "sdk-app-startup";
|
|
11
|
+
/** Launcher service required before this app can parse its invocation. */
|
|
12
|
+
export declare const inject: string[];
|
|
13
|
+
/** Service the JSON-RPC server row waits for before claiming stdio. */
|
|
14
|
+
export declare const SDK_APP_STARTUP_SERVICE = "sdkAppStartup";
|
|
15
|
+
/** SDK stdio startup configuration. */
|
|
16
|
+
export interface Config {
|
|
17
|
+
/** Profile name rendered in help and diagnostics (default `sdk`). */
|
|
18
|
+
profile?: string;
|
|
19
|
+
}
|
|
20
|
+
/** Validate and default SDK stdio startup configuration. */
|
|
21
|
+
export declare const Config: z<Config>;
|
|
22
|
+
/**
|
|
23
|
+
* Accept an SDK profile invocation, publish readiness, and bind EOF to the
|
|
24
|
+
* launcher's bounded shutdown.
|
|
25
|
+
* @param ctx - plugin context carrying command-line and exit launcher values.
|
|
26
|
+
* @param config - selected profile identity for command help.
|
|
27
|
+
*/
|
|
28
|
+
export declare function apply(ctx: Context, config?: Config): void;
|
|
29
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Package-owned invariant companion for `@deepseek-ai/dsh-sdk-app`.
|
|
3
|
+
* @module @deepseek-ai/dsh-sdk-app/invariant
|
|
4
|
+
*/
|
|
5
|
+
import type { Context } from '@deepseek-ai/cordis';
|
|
6
|
+
/** Cordis companion plugin name. */
|
|
7
|
+
export declare const name = "sdk-app-invariant";
|
|
8
|
+
/** Service required before the companion can register. */
|
|
9
|
+
export declare const inject: string[];
|
|
10
|
+
/**
|
|
11
|
+
* Register this package's invariant companion.
|
|
12
|
+
* @param ctx - Cordis context carrying the invariant service.
|
|
13
|
+
* @returns the installed registration's disposer after setup succeeds.
|
|
14
|
+
*/
|
|
15
|
+
export declare const apply: (ctx: Context) => Promise<() => void>;
|
|
16
|
+
//# sourceMappingURL=invariant.d.ts.map
|
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@deepseek-ai/dsh-sdk-app",
|
|
3
|
+
"description": "The dsh SDK profile bundle: stdio JSON-RPC serving and process lifecycle over dsh-base",
|
|
4
|
+
"version": "0.1.2-alpha.2",
|
|
5
|
+
"publishConfig": {
|
|
6
|
+
"access": "public"
|
|
7
|
+
},
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
|
|
11
|
+
"directory": "packages/bundle/sdk-app"
|
|
12
|
+
},
|
|
13
|
+
"type": "module",
|
|
14
|
+
"main": "lib/index.js",
|
|
15
|
+
"types": "lib/types/index.d.ts",
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./lib/types/index.d.ts",
|
|
19
|
+
"default": "./lib/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./invariant": {
|
|
22
|
+
"types": "./lib/types/invariant.d.ts",
|
|
23
|
+
"default": "./lib/invariant.js"
|
|
24
|
+
},
|
|
25
|
+
"./cordis.patch.yml": "./cordis.patch.yml",
|
|
26
|
+
"./src/*": "./src/*",
|
|
27
|
+
"./package.json": "./package.json"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"lib/index.js",
|
|
31
|
+
"lib/invariant.js",
|
|
32
|
+
"cordis.patch.yml",
|
|
33
|
+
"lib/types/**/*.d.ts"
|
|
34
|
+
],
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"dsh": {
|
|
37
|
+
"bundle": {
|
|
38
|
+
"patch": "./cordis.patch.yml"
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
"dependencies": {
|
|
42
|
+
"commander": "^15.0.0",
|
|
43
|
+
"@deepseek-ai/dsh-cmdline": "^0.1.2-alpha.2",
|
|
44
|
+
"@deepseek-ai/dsh-sdk-jsonrpc-server": "^0.1.2-alpha.2",
|
|
45
|
+
"@deepseek-ai/schemastery": "^3.18.2"
|
|
46
|
+
},
|
|
47
|
+
"peerDependencies": {
|
|
48
|
+
"@deepseek-ai/cordis": "^4.0.2",
|
|
49
|
+
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@deepseek-ai/cordis-plugin-include": "^1.0.7",
|
|
53
|
+
"@deepseek-ai/dsh-invariants": "^0.1.2-alpha.2",
|
|
54
|
+
"@deepseek-ai/cordis": "^4.0.2"
|
|
55
|
+
}
|
|
56
|
+
}
|