@sparkelf/dsh-dataops-standalone 0.2.0-rc.18
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 +82 -0
- package/README.zh.md +88 -0
- package/lib/bin.js +32 -0
- package/lib/index.js +40 -0
- package/lib/types/bin.d.ts +17 -0
- package/lib/types/bin.js +35 -0
- package/lib/types/index.d.ts +27 -0
- package/lib/types/index.js +40 -0
- package/package.json +302 -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/standalone/dataops-standalone/README.md
|
|
5
|
+
README.md: 7bf1f9cb0f226e59953450089f03c9a0b8b6b465
|
|
6
|
+
README.zh.md: 3e19a9c713c7785c77e24fbe2746ad66f351b103
|
package/README.md
ADDED
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "Registry entry point for a DataOps AI workspace: pins the runtime and the reviewed plugins without the capabilities an intranet deployment must not run."
|
|
3
|
+
kind: "package-reference"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# @sparkelf/dsh-dataops-standalone
|
|
7
|
+
|
|
8
|
+
English | [中文](README.zh.md)
|
|
9
|
+
|
|
10
|
+
Install a DataOps AI workspace from the registry and reach the browser UI without a source checkout, a build, or git.
|
|
11
|
+
|
|
12
|
+
## Table of Contents
|
|
13
|
+
|
|
14
|
+
- [Use this package](#use-this-package)
|
|
15
|
+
- [Model Experience](#model-experience)
|
|
16
|
+
- [Known Limitations and Deferred Work](#known-limitations-and-deferred-work)
|
|
17
|
+
- [Dev Note](#dev-note)
|
|
18
|
+
|
|
19
|
+
-----
|
|
20
|
+
|
|
21
|
+
## Summary
|
|
22
|
+
|
|
23
|
+
One `npm install` brings the official runtime, the Plus distribution, and the reviewed plugins a DataOps workspace runs. `dsh-dataops start` writes the `dataops-web` profile, picks a free port, starts the server, and prints the URL. The remaining commands cover what the launcher leaves to the user: stop, status, update, and doctor.
|
|
24
|
+
|
|
25
|
+
This package is the **DataOps variant** of `@sparkelf/dsh-plus-standalone`, generated from the distribution's `dshPlus.profile.standaloneVariants.dataops` declaration. It installs strictly less: the capabilities an intranet workspace must not run are absent from its dependency set rather than merely unmounted, so a scan of the image does not find them.
|
|
26
|
+
|
|
27
|
+
## Use this package
|
|
28
|
+
|
|
29
|
+
```sh
|
|
30
|
+
npm install -g @sparkelf/dsh-dataops-standalone
|
|
31
|
+
dsh-dataops start
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
| Command | Effect |
|
|
35
|
+
|---|---|
|
|
36
|
+
| `dsh-dataops start` | Writes the profile on first run, picks a free port, starts the server, prints the URL |
|
|
37
|
+
| `dsh-dataops stop` | Ends a background server within its grace period |
|
|
38
|
+
| `dsh-dataops status` | Reports whether the server is running and on which port |
|
|
39
|
+
| `dsh-dataops update` | Moves to a newer published release; `--check` reports without installing |
|
|
40
|
+
| `dsh-dataops doctor` | Checks Node, the distribution, the profile, and the port |
|
|
41
|
+
|
|
42
|
+
### Capabilities this variant omits
|
|
43
|
+
|
|
44
|
+
| Omitted package | Capability |
|
|
45
|
+
|---|---|
|
|
46
|
+
| `@deepseek-ai/dsh-computer-use` | Drive the Windows desktop |
|
|
47
|
+
| `@deepseek-ai/dsh-experimental-computer-use-cua-driver-mcp` | The cua driver behind that capability |
|
|
48
|
+
| `@deepseek-ai/dsh-web-search-exa` | Route web search through Exa |
|
|
49
|
+
|
|
50
|
+
`@sparkelf/dsh-mobile-bridge` is absent from the whole distribution, so it is absent here too.
|
|
51
|
+
|
|
52
|
+
## Dev Note
|
|
53
|
+
|
|
54
|
+
- `src/bin.ts` forwards every command to the `@sparkelf/dsh-plus` CLI, which reads this package's `dshPlusStandalone` declaration to materialize the `dataops-web` profile and to apply the omission overrides. The [distribution Agent Note](../../../.agents/notes/implemented/architecture/2026-08-29-ranged-plus-patchset-distribution.md) records why the distribution owns the reviewed set.
|
|
55
|
+
- No runtime invariant companion is published because this package only declares a dependency set and forwards every command to the CLI; the profile it materializes is observed by that CLI, not here.
|
|
56
|
+
|
|
57
|
+
```sh
|
|
58
|
+
tsx scripts/standalone/generate-manifest.ts --distribution packages/bundle/plus \
|
|
59
|
+
--out packages/standalone/dataops-standalone/package.json \
|
|
60
|
+
--runtime-version <dsh version> --variant dataops
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
## Model Experience
|
|
64
|
+
|
|
65
|
+
### DataOps variant installation
|
|
66
|
+
|
|
67
|
+
#### What the model sees
|
|
68
|
+
|
|
69
|
+
Nothing of its own. `@sparkelf/dsh-dataops-standalone` selects the runtime and the plugins a `dataops-web` profile mounts; it registers no tool, prompt section, or Session event. The model meets only what the mounted plugins expose, and the omitted capabilities' tools are not registered at all.
|
|
70
|
+
|
|
71
|
+
#### Token effect
|
|
72
|
+
|
|
73
|
+
Zero. The package adds no model-request tokens. It removes the omitted capabilities' tools, so a session carries fewer tool schemas than a full Plus deployment.
|
|
74
|
+
|
|
75
|
+
#### KV Cache effect
|
|
76
|
+
|
|
77
|
+
None. It contributes no prompt content, so it cannot shift a cache prefix.
|
|
78
|
+
|
|
79
|
+
## Known Limitations and Deferred Work
|
|
80
|
+
|
|
81
|
+
- The exclusion list restates facts the distribution owns. A package the distribution adds is not excluded here until the variant names it. The generator fails the build when a variant names a package the distribution does not declare, so the two cannot drift silently in the other direction.
|
|
82
|
+
- The variant is generated, not hand-written. Regenerate with `--variant dataops` after a distribution change rather than editing the manifest.
|
package/README.zh.md
ADDED
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
---
|
|
2
|
+
description: "DataOps AI 工作区的注册表安装入口:固定运行时与经评审的插件,但不含内网部署不允许运行的能力。"
|
|
3
|
+
kind: "package-reference"
|
|
4
|
+
---
|
|
5
|
+
|
|
6
|
+
# @sparkelf/dsh-dataops-standalone
|
|
7
|
+
|
|
8
|
+
[English](README.md) | 中文
|
|
9
|
+
|
|
10
|
+
从注册表安装 DataOps AI 工作区,无需源码检出、无需构建、无需 git,即可打开浏览器界面。
|
|
11
|
+
## 目录
|
|
12
|
+
|
|
13
|
+
- [使用](#use-this-package)
|
|
14
|
+
- [模型体验](#model-experience)
|
|
15
|
+
- [已知限制和延期工作](#known-limitations-and-deferred-work)
|
|
16
|
+
- [开发备注](#dev-note)
|
|
17
|
+
|
|
18
|
+
-----
|
|
19
|
+
|
|
20
|
+
## 概述
|
|
21
|
+
|
|
22
|
+
一次 `npm install` 带来官方运行时、Plus 发行层,以及 DataOps 工作区所需经评审的插件。随后 `dsh-dataops start` 写入 `dataops-web` profile、选择空闲端口、启动服务并打印 URL。其余命令覆盖启动器交给用户的部分:stop、status、update、doctor。
|
|
23
|
+
|
|
24
|
+
本包是 `@sparkelf/dsh-plus-standalone` 的 **DataOps 变体**。它安装的内容严格更少:内网工作区不允许运行的能力**不在依赖集合里**,而不只是「安装但不挂载」,因此镜像合规扫描不会发现它们。
|
|
25
|
+
|
|
26
|
+
变体只在分发层的 `dshPlus.profile.standaloneVariants.dataops` 声明一次,本 manifest 由它生成。因此分发层新增的插件仍会进入本包,除非变体显式排除它。
|
|
27
|
+
|
|
28
|
+
<a id="use-this-package"></a>
|
|
29
|
+
## 使用
|
|
30
|
+
|
|
31
|
+
```sh
|
|
32
|
+
npm install -g @sparkelf/dsh-dataops-standalone
|
|
33
|
+
dsh-dataops start
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
| 命令 | 效果 |
|
|
37
|
+
|---|---|
|
|
38
|
+
| `dsh-dataops start` | 首次运行写入 profile、选择空闲端口、启动服务并打印 URL |
|
|
39
|
+
| `dsh-dataops stop` | 在宽限期内结束后台服务 |
|
|
40
|
+
| `dsh-dataops status` | 报告服务是否在运行以及端口 |
|
|
41
|
+
| `dsh-dataops update` | 升级到更新的已发布版本;`--check` 只报告不安装 |
|
|
42
|
+
| `dsh-dataops doctor` | 检查 Node、发行层、profile 与端口 |
|
|
43
|
+
|
|
44
|
+
<a id="capabilities-this-variant-omits"></a>
|
|
45
|
+
### Capabilities this variant omits
|
|
46
|
+
|
|
47
|
+
| 省略的包 | 能力 |
|
|
48
|
+
|---|---|
|
|
49
|
+
| `@deepseek-ai/dsh-computer-use` | 驱动 Windows 桌面 |
|
|
50
|
+
| `@deepseek-ai/dsh-experimental-computer-use-cua-driver-mcp` | 该能力背后的 cua 驱动 |
|
|
51
|
+
| `@deepseek-ai/dsh-web-search-exa` | 通过 Exa 路由网络搜索 |
|
|
52
|
+
|
|
53
|
+
`@sparkelf/dsh-mobile-bridge` 在分发层即已省略,因此此处同样没有。
|
|
54
|
+
|
|
55
|
+
<a id="dev-note"></a>
|
|
56
|
+
## 开发备注
|
|
57
|
+
|
|
58
|
+
- `src/bin.ts` 把所有命令转发给 `@sparkelf/dsh-plus` CLI;后者读取本包的 `dshPlusStandalone` 声明来物化 `dataops-web` profile 并应用省略 overrides。该分发层为何拥有经评审的集合,记录在[分发层 Agent Note](../../../.agents/notes/implemented/architecture/2026-08-29-ranged-plus-patchset-distribution.zh.md)中。
|
|
59
|
+
- 不发布运行时 invariant 伴随模块,因为本包只声明依赖集合并把每个命令转发给 CLI;它物化的 profile 由该 CLI 观察,而不是由本包观察。
|
|
60
|
+
|
|
61
|
+
```sh
|
|
62
|
+
tsx scripts/standalone/generate-manifest.ts --distribution packages/bundle/plus \
|
|
63
|
+
--out packages/standalone/dataops-standalone/package.json \
|
|
64
|
+
--runtime-version <dsh version> --variant dataops
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
<a id="model-experience"></a>
|
|
68
|
+
## 模型体验
|
|
69
|
+
|
|
70
|
+
### DataOps variant installation
|
|
71
|
+
|
|
72
|
+
#### What the model sees
|
|
73
|
+
|
|
74
|
+
没有它自己的内容。`@sparkelf/dsh-dataops-standalone` 选择运行时与 `dataops-web` profile 挂载的插件;它不注册任何工具、提示词段落或 Session 事件。模型只接触到被挂载插件所暴露的内容,而被省略能力的工具根本不会注册。
|
|
75
|
+
|
|
76
|
+
#### Token effect
|
|
77
|
+
|
|
78
|
+
零。本包不增加任何模型请求 token。它移除了被省略能力的工具,因此一次会话携带的工具 schema 少于完整 Plus 部署。
|
|
79
|
+
|
|
80
|
+
#### KV Cache effect
|
|
81
|
+
|
|
82
|
+
无。它不贡献提示词内容,因此不会移动缓存前缀。
|
|
83
|
+
|
|
84
|
+
<a id="known-limitations-and-deferred-work"></a>
|
|
85
|
+
## 已知限制和延期工作
|
|
86
|
+
|
|
87
|
+
- 排除清单复述的是分发层拥有的事实。分发层新增的包在本变体命名它之前不会被排除;而变体命名了分发层未声明的包时生成器会失败,因此两个方向都不会静默漂移。
|
|
88
|
+
- 本变体是生成产物,不是手写文件。分发层变更后用 `--variant dataops` 重新生成,而不是直接编辑 manifest。
|
package/lib/bin.js
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
import { createRequire } from "node:module";
|
|
3
|
+
import { readFileSync } from "node:fs";
|
|
4
|
+
import { dirname, join } from "node:path";
|
|
5
|
+
import { pathToFileURL } from "node:url";
|
|
6
|
+
//#region lib/types/bin.js
|
|
7
|
+
/**
|
|
8
|
+
* The installed command for a standalone DataOps workspace deployment.
|
|
9
|
+
*
|
|
10
|
+
* The CLI lives in \`@sparkelf/dsh-plus\`, but npm installs a command only for the
|
|
11
|
+
* package that declares it: a dependency's \`bin\` becomes a nested entry the shell
|
|
12
|
+
* cannot reach. This package is what a DataOps workspace installs, so it declares the
|
|
13
|
+
* command and forwards every argument to the CLI, keeping one implementation of start,
|
|
14
|
+
* stop, status, update, and doctor.
|
|
15
|
+
*
|
|
16
|
+
* The resolved profile name comes from this package's own \`dshPlusStandalone.profile\`,
|
|
17
|
+
* which the CLI reads to materialize \`dataops-web\` rather than the public \`plus\` profile.
|
|
18
|
+
*
|
|
19
|
+
* @module @sparkelf/dsh-dataops-standalone/bin
|
|
20
|
+
*/
|
|
21
|
+
var __rewriteRelativeImportExtension = function(path, preserveJsx) {
|
|
22
|
+
if (typeof path === "string" && /^\.\.?\//.test(path)) return path.replace(/\.(tsx)$|((?:\.d)?)((?:\.[^./]+?)?)\.([cm]?)ts$/i, function(m, tsx, d, ext, cm) {
|
|
23
|
+
return tsx ? preserveJsx ? ".jsx" : ".js" : d && (!ext || !cm) ? m : d + ext + "." + cm.toLowerCase() + "js";
|
|
24
|
+
});
|
|
25
|
+
return path;
|
|
26
|
+
};
|
|
27
|
+
const manifestPath = createRequire(import.meta.url).resolve("@sparkelf/dsh-plus/package.json");
|
|
28
|
+
const declared = JSON.parse(readFileSync(manifestPath, "utf8")).bin?.["dsh-plus"];
|
|
29
|
+
if (declared === void 0) throw new Error("@sparkelf/dsh-plus declares no dsh-plus command");
|
|
30
|
+
await import(__rewriteRelativeImportExtension(pathToFileURL(join(dirname(manifestPath), declared)).href));
|
|
31
|
+
//#endregion
|
|
32
|
+
export {};
|
package/lib/index.js
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { readFileSync } from "node:fs";
|
|
2
|
+
import { join } from "node:path";
|
|
3
|
+
import { fileURLToPath } from "node:url";
|
|
4
|
+
//#region lib/types/index.js
|
|
5
|
+
/**
|
|
6
|
+
* The standalone DataOps workspace distribution.
|
|
7
|
+
*
|
|
8
|
+
* This package exists to be installed, not to be called: its manifest pins the
|
|
9
|
+
* distribution and its runtime without the capabilities an intranet workspace must not
|
|
10
|
+
* run, and the profile it needs is written by \`dsh-plus start\`.
|
|
11
|
+
*
|
|
12
|
+
* @module @sparkelf/dsh-dataops-standalone
|
|
13
|
+
*/
|
|
14
|
+
/** Profile this installation owns. */
|
|
15
|
+
const PROFILE = "dataops-web";
|
|
16
|
+
/** Distribution package this installation pins. */
|
|
17
|
+
const DISTRIBUTION = "@sparkelf/dsh-plus";
|
|
18
|
+
/**
|
|
19
|
+
* Capabilities this variant omits, which an intranet workspace must not run.
|
|
20
|
+
*
|
|
21
|
+
* The list restates the distribution's own \`standaloneVariants.dataops.excludePackages\`
|
|
22
|
+
* so a consumer or a gate can assert the reduction without parsing that manifest.
|
|
23
|
+
*/
|
|
24
|
+
const EXCLUDED_PACKAGES = [
|
|
25
|
+
"@deepseek-ai/dsh-computer-use",
|
|
26
|
+
"@deepseek-ai/dsh-experimental-computer-use-cua-driver-mcp",
|
|
27
|
+
"@deepseek-ai/dsh-web-search-exa"
|
|
28
|
+
];
|
|
29
|
+
/**
|
|
30
|
+
* Official runtime version this installation targets.
|
|
31
|
+
*
|
|
32
|
+
* @returns the pinned \`@deepseek-ai/dsh\` version.
|
|
33
|
+
*/
|
|
34
|
+
function runtimeVersion() {
|
|
35
|
+
const pinned = JSON.parse(readFileSync(join(fileURLToPath(new URL("..", import.meta.url)), "../../package.json"), "utf8")).dependencies?.["@deepseek-ai/dsh"];
|
|
36
|
+
if (pinned === void 0) throw new Error("the standalone manifest pins no @deepseek-ai/dsh version");
|
|
37
|
+
return pinned;
|
|
38
|
+
}
|
|
39
|
+
//#endregion
|
|
40
|
+
export { DISTRIBUTION, EXCLUDED_PACKAGES, PROFILE, runtimeVersion };
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* The installed command for a standalone DataOps workspace deployment.
|
|
4
|
+
*
|
|
5
|
+
* The CLI lives in \`@sparkelf/dsh-plus\`, but npm installs a command only for the
|
|
6
|
+
* package that declares it: a dependency's \`bin\` becomes a nested entry the shell
|
|
7
|
+
* cannot reach. This package is what a DataOps workspace installs, so it declares the
|
|
8
|
+
* command and forwards every argument to the CLI, keeping one implementation of start,
|
|
9
|
+
* stop, status, update, and doctor.
|
|
10
|
+
*
|
|
11
|
+
* The resolved profile name comes from this package's own \`dshPlusStandalone.profile\`,
|
|
12
|
+
* which the CLI reads to materialize \`dataops-web\` rather than the public \`plus\` profile.
|
|
13
|
+
*
|
|
14
|
+
* @module @sparkelf/dsh-dataops-standalone/bin
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=bin.d.ts.map
|
package/lib/types/bin.js
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/**
|
|
3
|
+
* The installed command for a standalone DataOps workspace deployment.
|
|
4
|
+
*
|
|
5
|
+
* The CLI lives in \`@sparkelf/dsh-plus\`, but npm installs a command only for the
|
|
6
|
+
* package that declares it: a dependency's \`bin\` becomes a nested entry the shell
|
|
7
|
+
* cannot reach. This package is what a DataOps workspace installs, so it declares the
|
|
8
|
+
* command and forwards every argument to the CLI, keeping one implementation of start,
|
|
9
|
+
* stop, status, update, and doctor.
|
|
10
|
+
*
|
|
11
|
+
* The resolved profile name comes from this package's own \`dshPlusStandalone.profile\`,
|
|
12
|
+
* which the CLI reads to materialize \`dataops-web\` rather than the public \`plus\` profile.
|
|
13
|
+
*
|
|
14
|
+
* @module @sparkelf/dsh-dataops-standalone/bin
|
|
15
|
+
*/
|
|
16
|
+
var __rewriteRelativeImportExtension = (this && this.__rewriteRelativeImportExtension) || function (path, preserveJsx) {
|
|
17
|
+
if (typeof path === "string" && /^\.\.?\//.test(path)) {
|
|
18
|
+
return path.replace(/\.(tsx)$|((?:\.d)?)((?:\.[^./]+?)?)\.([cm]?)ts$/i, function (m, tsx, d, ext, cm) {
|
|
19
|
+
return tsx ? preserveJsx ? ".jsx" : ".js" : d && (!ext || !cm) ? m : (d + ext + "." + cm.toLowerCase() + "js");
|
|
20
|
+
});
|
|
21
|
+
}
|
|
22
|
+
return path;
|
|
23
|
+
};
|
|
24
|
+
import { readFileSync } from 'node:fs';
|
|
25
|
+
import { createRequire } from 'node:module';
|
|
26
|
+
import { dirname, join } from 'node:path';
|
|
27
|
+
import { pathToFileURL } from 'node:url';
|
|
28
|
+
const require = createRequire(import.meta.url);
|
|
29
|
+
const manifestPath = require.resolve('@sparkelf/dsh-plus/package.json');
|
|
30
|
+
const manifest = JSON.parse(readFileSync(manifestPath, 'utf8'));
|
|
31
|
+
const declared = manifest.bin?.['dsh-plus'];
|
|
32
|
+
if (declared === undefined)
|
|
33
|
+
throw new Error('@sparkelf/dsh-plus declares no dsh-plus command');
|
|
34
|
+
await import(__rewriteRelativeImportExtension(pathToFileURL(join(dirname(manifestPath), declared)).href));
|
|
35
|
+
//# sourceMappingURL=bin.js.map
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The standalone DataOps workspace distribution.
|
|
3
|
+
*
|
|
4
|
+
* This package exists to be installed, not to be called: its manifest pins the
|
|
5
|
+
* distribution and its runtime without the capabilities an intranet workspace must not
|
|
6
|
+
* run, and the profile it needs is written by \`dsh-plus start\`.
|
|
7
|
+
*
|
|
8
|
+
* @module @sparkelf/dsh-dataops-standalone
|
|
9
|
+
*/
|
|
10
|
+
/** Profile this installation owns. */
|
|
11
|
+
export declare const PROFILE = "dataops-web";
|
|
12
|
+
/** Distribution package this installation pins. */
|
|
13
|
+
export declare const DISTRIBUTION = "@sparkelf/dsh-plus";
|
|
14
|
+
/**
|
|
15
|
+
* Capabilities this variant omits, which an intranet workspace must not run.
|
|
16
|
+
*
|
|
17
|
+
* The list restates the distribution's own \`standaloneVariants.dataops.excludePackages\`
|
|
18
|
+
* so a consumer or a gate can assert the reduction without parsing that manifest.
|
|
19
|
+
*/
|
|
20
|
+
export declare const EXCLUDED_PACKAGES: readonly string[];
|
|
21
|
+
/**
|
|
22
|
+
* Official runtime version this installation targets.
|
|
23
|
+
*
|
|
24
|
+
* @returns the pinned \`@deepseek-ai/dsh\` version.
|
|
25
|
+
*/
|
|
26
|
+
export declare function runtimeVersion(): string;
|
|
27
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The standalone DataOps workspace distribution.
|
|
3
|
+
*
|
|
4
|
+
* This package exists to be installed, not to be called: its manifest pins the
|
|
5
|
+
* distribution and its runtime without the capabilities an intranet workspace must not
|
|
6
|
+
* run, and the profile it needs is written by \`dsh-plus start\`.
|
|
7
|
+
*
|
|
8
|
+
* @module @sparkelf/dsh-dataops-standalone
|
|
9
|
+
*/
|
|
10
|
+
import { readFileSync } from 'node:fs';
|
|
11
|
+
import { join } from 'node:path';
|
|
12
|
+
import { fileURLToPath } from 'node:url';
|
|
13
|
+
/** Profile this installation owns. */
|
|
14
|
+
export const PROFILE = 'dataops-web';
|
|
15
|
+
/** Distribution package this installation pins. */
|
|
16
|
+
export const DISTRIBUTION = '@sparkelf/dsh-plus';
|
|
17
|
+
/**
|
|
18
|
+
* Capabilities this variant omits, which an intranet workspace must not run.
|
|
19
|
+
*
|
|
20
|
+
* The list restates the distribution's own \`standaloneVariants.dataops.excludePackages\`
|
|
21
|
+
* so a consumer or a gate can assert the reduction without parsing that manifest.
|
|
22
|
+
*/
|
|
23
|
+
export const EXCLUDED_PACKAGES = [
|
|
24
|
+
'@deepseek-ai/dsh-computer-use',
|
|
25
|
+
'@deepseek-ai/dsh-experimental-computer-use-cua-driver-mcp',
|
|
26
|
+
'@deepseek-ai/dsh-web-search-exa',
|
|
27
|
+
];
|
|
28
|
+
/**
|
|
29
|
+
* Official runtime version this installation targets.
|
|
30
|
+
*
|
|
31
|
+
* @returns the pinned \`@deepseek-ai/dsh\` version.
|
|
32
|
+
*/
|
|
33
|
+
export function runtimeVersion() {
|
|
34
|
+
const manifest = JSON.parse(readFileSync(join(fileURLToPath(new URL('..', import.meta.url)), '../../package.json'), 'utf8'));
|
|
35
|
+
const pinned = manifest.dependencies?.['@deepseek-ai/dsh'];
|
|
36
|
+
if (pinned === undefined)
|
|
37
|
+
throw new Error('the standalone manifest pins no @deepseek-ai/dsh version');
|
|
38
|
+
return pinned;
|
|
39
|
+
}
|
|
40
|
+
//# sourceMappingURL=index.js.map
|
package/package.json
ADDED
|
@@ -0,0 +1,302 @@
|
|
|
1
|
+
{
|
|
2
|
+
"bin": {
|
|
3
|
+
"dsh-dataops": "lib/bin.js"
|
|
4
|
+
},
|
|
5
|
+
"dependencies": {
|
|
6
|
+
"@changfenhuang/dsh-genui": "0.11.0",
|
|
7
|
+
"@deepseek-ai/dsh": ">=0.1.6-alpha.1",
|
|
8
|
+
"@deepseek-ai/dsh-experimental-agent-team-profile": ">=0.1.6-alpha.1",
|
|
9
|
+
"@deepseek-ai/dsh-experimental-agent-team-web-profile": ">=0.1.6-alpha.1",
|
|
10
|
+
"@deepseek-ai/dsh-tool-session-query": ">=0.1.6-alpha.1",
|
|
11
|
+
"@huanlin/dsh-plugin-better-locale": "0.4.3",
|
|
12
|
+
"@sparkelf/dsh-api-client": "0.5.1",
|
|
13
|
+
"@sparkelf/dsh-client-ui-skill-center": ">=0.2.0-rc.17",
|
|
14
|
+
"@sparkelf/dsh-mineru": "0.1.2",
|
|
15
|
+
"@sparkelf/dsh-office-viewer-fonts": "0.1.2",
|
|
16
|
+
"@sparkelf/dsh-officecli": "0.1.2",
|
|
17
|
+
"@sparkelf/dsh-plugin-backup": ">=0.2.0-rc.17",
|
|
18
|
+
"@sparkelf/dsh-plugin-better-sidebar-office": "0.2.1",
|
|
19
|
+
"@sparkelf/dsh-plugin-mcp-credentials": ">=0.2.0-rc.17",
|
|
20
|
+
"@sparkelf/dsh-plugin-subagent-settings": ">=0.2.0-rc.17",
|
|
21
|
+
"@sparkelf/dsh-plugin-supervisor": "0.1.6",
|
|
22
|
+
"@sparkelf/dsh-plus": "0.2.0-rc.18",
|
|
23
|
+
"@sparkelf/dsh-ssh-manager": "0.7.2",
|
|
24
|
+
"@sparkelf/dsh-workbench-vault": "0.1.2",
|
|
25
|
+
"dsh-better-sidebar": "0.19.1",
|
|
26
|
+
"dsh-right-bg-anim": "1.1.0",
|
|
27
|
+
"dsh-sql-workbench": "0.5.1",
|
|
28
|
+
"dsh-video-preview": "0.1.4",
|
|
29
|
+
"dshmarket": ">=1.45.1",
|
|
30
|
+
"semver": ">=7.7.3",
|
|
31
|
+
"yaml": ">=2.9.0"
|
|
32
|
+
},
|
|
33
|
+
"description": "Install and run a DataOps AI workspace from the registry, without the capabilities an intranet deployment must not run.",
|
|
34
|
+
"devDependencies": {
|
|
35
|
+
"@deepseek-ai/cordis": "^4.0.2"
|
|
36
|
+
},
|
|
37
|
+
"dshPlusStandalone": {
|
|
38
|
+
"allowBuilds": {
|
|
39
|
+
"@deepseek-ai/dsh-subprocess-local": true,
|
|
40
|
+
"@google/genai": false,
|
|
41
|
+
"@officecli/officecli": true,
|
|
42
|
+
"cpu-features": false,
|
|
43
|
+
"koffi": true,
|
|
44
|
+
"node-pty": true,
|
|
45
|
+
"oracledb": true,
|
|
46
|
+
"protobufjs": false,
|
|
47
|
+
"ssh2": true
|
|
48
|
+
},
|
|
49
|
+
"bundles": [
|
|
50
|
+
"@deepseek-ai/dsh-base",
|
|
51
|
+
"@deepseek-ai/dsh-experimental-agent-team-profile",
|
|
52
|
+
"@deepseek-ai/dsh-web-app",
|
|
53
|
+
"@deepseek-ai/dsh-experimental-agent-team-web-profile",
|
|
54
|
+
"@sparkelf/dsh-mineru",
|
|
55
|
+
"@sparkelf/dsh-officecli",
|
|
56
|
+
"dshmarket",
|
|
57
|
+
"@huanlin/dsh-plugin-better-locale",
|
|
58
|
+
"dsh-better-sidebar",
|
|
59
|
+
"@sparkelf/dsh-plugin-better-sidebar-office",
|
|
60
|
+
"@sparkelf/dsh-office-viewer-fonts",
|
|
61
|
+
"dsh-video-preview",
|
|
62
|
+
"@changfenhuang/dsh-genui",
|
|
63
|
+
"@sparkelf/dsh-plugin-supervisor",
|
|
64
|
+
"@sparkelf/dsh-plus",
|
|
65
|
+
"dsh-sql-workbench",
|
|
66
|
+
"@sparkelf/dsh-ssh-manager",
|
|
67
|
+
"@sparkelf/dsh-api-client",
|
|
68
|
+
"dsh-right-bg-anim"
|
|
69
|
+
],
|
|
70
|
+
"formatVersion": 1,
|
|
71
|
+
"omittedPackages": {
|
|
72
|
+
"@deepseek-ai/dsh-computer-use": "npm:@sparkelf/dsh-omitted@0.2.0-rc.18",
|
|
73
|
+
"@deepseek-ai/dsh-experimental-computer-use-cua-driver-mcp": "npm:@sparkelf/dsh-omitted@0.2.0-rc.18",
|
|
74
|
+
"@deepseek-ai/dsh-web-search-exa": "npm:@sparkelf/dsh-omitted@0.2.0-rc.18"
|
|
75
|
+
},
|
|
76
|
+
"peerOverrides": [
|
|
77
|
+
{
|
|
78
|
+
"name": "@deepseek-ai/dsh-llm",
|
|
79
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
80
|
+
"version": "0.1.6-alpha.1"
|
|
81
|
+
},
|
|
82
|
+
{
|
|
83
|
+
"name": "@deepseek-ai/dsh-skill",
|
|
84
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
85
|
+
"version": "0.1.6-alpha.1"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"name": "@deepseek-ai/dsh-tools",
|
|
89
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
90
|
+
"version": "0.1.6-alpha.1"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"name": "@deepseek-ai/dsh-session",
|
|
94
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
95
|
+
"version": "0.1.6-alpha.1"
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"name": "@deepseek-ai/dsh-invariants",
|
|
99
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
100
|
+
"version": "0.1.6-alpha.1"
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
"name": "@deepseek-ai/dsh-util-values",
|
|
104
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
105
|
+
"version": "0.1.6-alpha.1"
|
|
106
|
+
},
|
|
107
|
+
{
|
|
108
|
+
"name": "@deepseek-ai/dsh-client-store",
|
|
109
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
110
|
+
"version": "0.1.6-alpha.1"
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"name": "@deepseek-ai/dsh-system-prompt",
|
|
114
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
115
|
+
"version": "0.1.6-alpha.1"
|
|
116
|
+
},
|
|
117
|
+
{
|
|
118
|
+
"name": "@deepseek-ai/dsh-client-ui-chat",
|
|
119
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
120
|
+
"version": "0.1.6-alpha.1"
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"name": "@deepseek-ai/dsh-client-ui-tool",
|
|
124
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
125
|
+
"version": "0.1.6-alpha.1"
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
"name": "@deepseek-ai/dsh-client-ui-slots",
|
|
129
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
130
|
+
"version": "0.1.6-alpha.1"
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"name": "@deepseek-ai/dsh-client-ui-session",
|
|
134
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
135
|
+
"version": "0.1.6-alpha.1"
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"name": "@deepseek-ai/dsh-client-ui-renderer",
|
|
139
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
140
|
+
"version": "0.1.6-alpha.1"
|
|
141
|
+
},
|
|
142
|
+
{
|
|
143
|
+
"name": "@deepseek-ai/dsh-client-ui-primitives",
|
|
144
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
145
|
+
"version": "0.1.6-alpha.1"
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"name": "@deepseek-ai/dsh-api-session-controller",
|
|
149
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
150
|
+
"version": "0.1.6-alpha.1"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"name": "@deepseek-ai/dsh-client-ui-conversation",
|
|
154
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
155
|
+
"version": "0.1.6-alpha.1"
|
|
156
|
+
},
|
|
157
|
+
{
|
|
158
|
+
"name": "@deepseek-ai/dsh-client-ui-input-trigger",
|
|
159
|
+
"reason": "@changfenhuang/dsh-genui@0.11.0 declares ^0.1.2-rc.1 || ^0.1.5-alpha.1, which 0.1.6-alpha.1 does not satisfy",
|
|
160
|
+
"version": "0.1.6-alpha.1"
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"name": "@deepseek-ai/dsh-host-webserver",
|
|
164
|
+
"reason": "@sparkelf/dsh-plugin-supervisor@0.1.6 declares 0.1.5-rc.2, which 0.1.6-alpha.1 does not satisfy",
|
|
165
|
+
"version": "0.1.6-alpha.1"
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"name": "@deepseek-ai/dsh-agent",
|
|
169
|
+
"reason": "dsh-sql-workbench@0.5.1 declares 0.1.5-rc.2, which 0.1.6-alpha.1 does not satisfy",
|
|
170
|
+
"version": "0.1.6-alpha.1"
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"name": "@deepseek-ai/dsh-client-locale",
|
|
174
|
+
"reason": "dsh-sql-workbench@0.5.1 declares 0.1.5-rc.2, which 0.1.6-alpha.1 does not satisfy",
|
|
175
|
+
"version": "0.1.6-alpha.1"
|
|
176
|
+
},
|
|
177
|
+
{
|
|
178
|
+
"name": "@deepseek-ai/dsh-client-ui-sidebar-right",
|
|
179
|
+
"reason": "dsh-sql-workbench@0.5.1 declares 0.1.5-rc.2, which 0.1.6-alpha.1 does not satisfy",
|
|
180
|
+
"version": "0.1.6-alpha.1"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"name": "@deepseek-ai/dsh-user-approval",
|
|
184
|
+
"reason": "@sparkelf/dsh-ssh-manager@0.7.2 declares 0.1.5-rc.2, which 0.1.6-alpha.1 does not satisfy",
|
|
185
|
+
"version": "0.1.6-alpha.1"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"name": "@deepseek-ai/dsh-credentials",
|
|
189
|
+
"reason": "@sparkelf/dsh-ssh-manager@0.7.2 declares 0.1.5-rc.2, which 0.1.6-alpha.1 does not satisfy",
|
|
190
|
+
"version": "0.1.6-alpha.1"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"name": "@deepseek-ai/dsh-settings",
|
|
194
|
+
"reason": "dsh-better-sidebar@0.19.1 declares ^0.1.5-rc.1, which 0.1.6-alpha.1 does not satisfy",
|
|
195
|
+
"version": "0.1.6-alpha.1"
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
"name": "@deepseek-ai/dsh-subagent",
|
|
199
|
+
"reason": "dsh-better-sidebar@0.19.1 declares ^0.1.5-rc.1, which 0.1.6-alpha.1 does not satisfy",
|
|
200
|
+
"version": "0.1.6-alpha.1"
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"name": "@huanlin/dsh-plugin-better-locale",
|
|
204
|
+
"reason": "dsh-better-sidebar@0.19.1 declares ^0.1.0, which 0.1.6-alpha.1 does not satisfy",
|
|
205
|
+
"version": "0.4.3"
|
|
206
|
+
},
|
|
207
|
+
{
|
|
208
|
+
"name": "@deepseek-ai/dsh-client-ui-settings",
|
|
209
|
+
"reason": "dsh-better-sidebar@0.19.1 declares ^0.1.5-rc.1, which 0.1.6-alpha.1 does not satisfy",
|
|
210
|
+
"version": "0.1.6-alpha.1"
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"name": "dsh-better-sidebar",
|
|
214
|
+
"reason": "@sparkelf/dsh-plugin-better-sidebar-office@0.2.1 declares ^0.17.0, which 0.1.6-alpha.1 does not satisfy",
|
|
215
|
+
"version": "0.19.1"
|
|
216
|
+
}
|
|
217
|
+
],
|
|
218
|
+
"profile": "dataops-web"
|
|
219
|
+
},
|
|
220
|
+
"exports": {
|
|
221
|
+
".": {
|
|
222
|
+
"default": "./lib/index.js",
|
|
223
|
+
"types": "./lib/types/index.d.ts"
|
|
224
|
+
},
|
|
225
|
+
"./package.json": "./package.json"
|
|
226
|
+
},
|
|
227
|
+
"files": [
|
|
228
|
+
"lib/**/*.js",
|
|
229
|
+
"lib/**/*.d.ts",
|
|
230
|
+
"README.md",
|
|
231
|
+
"README.zh.md",
|
|
232
|
+
"README.i18n.yaml"
|
|
233
|
+
],
|
|
234
|
+
"license": "MIT",
|
|
235
|
+
"main": "lib/index.js",
|
|
236
|
+
"name": "@sparkelf/dsh-dataops-standalone",
|
|
237
|
+
"overrides": {
|
|
238
|
+
"@deepseek-ai/dsh-agent": "0.1.6-alpha.1",
|
|
239
|
+
"@deepseek-ai/dsh-agent-presets": "npm:@sparkelf/dsh-agent-presets@0.1.6-alpha.2",
|
|
240
|
+
"@deepseek-ai/dsh-api-gateway": "npm:@sparkelf/dsh-api-gateway@0.1.6-alpha.2",
|
|
241
|
+
"@deepseek-ai/dsh-api-session-controller": "npm:@sparkelf/dsh-api-session-controller@0.1.6-alpha.2",
|
|
242
|
+
"@deepseek-ai/dsh-client-connection": "npm:@sparkelf/dsh-client-connection@0.1.6-alpha.2",
|
|
243
|
+
"@deepseek-ai/dsh-client-locale": "0.1.6-alpha.1",
|
|
244
|
+
"@deepseek-ai/dsh-client-store": "0.1.6-alpha.1",
|
|
245
|
+
"@deepseek-ai/dsh-client-ui-agent-preset": "npm:@sparkelf/dsh-client-ui-agent-preset@0.1.6-alpha.2",
|
|
246
|
+
"@deepseek-ai/dsh-client-ui-chat": "0.1.6-alpha.1",
|
|
247
|
+
"@deepseek-ai/dsh-client-ui-conversation": "0.1.6-alpha.1",
|
|
248
|
+
"@deepseek-ai/dsh-client-ui-deliverables": "npm:@sparkelf/dsh-client-ui-deliverables@0.1.6-alpha.2",
|
|
249
|
+
"@deepseek-ai/dsh-client-ui-input-trigger": "0.1.6-alpha.1",
|
|
250
|
+
"@deepseek-ai/dsh-client-ui-layout": "npm:@sparkelf/dsh-client-ui-layout@0.1.6-alpha.2",
|
|
251
|
+
"@deepseek-ai/dsh-client-ui-model-selection": "npm:@sparkelf/dsh-client-ui-model-selection@0.1.6-alpha.2",
|
|
252
|
+
"@deepseek-ai/dsh-client-ui-permission-presets": "npm:@sparkelf/dsh-client-ui-permission-presets@0.1.6-alpha.2",
|
|
253
|
+
"@deepseek-ai/dsh-client-ui-primitives": "npm:@sparkelf/dsh-client-ui-primitives@0.1.6-alpha.2",
|
|
254
|
+
"@deepseek-ai/dsh-client-ui-renderer": "0.1.6-alpha.1",
|
|
255
|
+
"@deepseek-ai/dsh-client-ui-session": "0.1.6-alpha.1",
|
|
256
|
+
"@deepseek-ai/dsh-client-ui-settings": "0.1.6-alpha.1",
|
|
257
|
+
"@deepseek-ai/dsh-client-ui-settings-models": "npm:@sparkelf/dsh-client-ui-settings-models@0.1.6-alpha.2",
|
|
258
|
+
"@deepseek-ai/dsh-client-ui-sidebar-right": "0.1.6-alpha.1",
|
|
259
|
+
"@deepseek-ai/dsh-client-ui-slots": "0.1.6-alpha.1",
|
|
260
|
+
"@deepseek-ai/dsh-client-ui-tool": "0.1.6-alpha.1",
|
|
261
|
+
"@deepseek-ai/dsh-client-ui-trajectory": "npm:@sparkelf/dsh-client-ui-trajectory@0.1.6-alpha.2",
|
|
262
|
+
"@deepseek-ai/dsh-credentials": "0.1.6-alpha.1",
|
|
263
|
+
"@deepseek-ai/dsh-host-frontend-static": "npm:@sparkelf/dsh-host-frontend-static@0.1.6-alpha.2",
|
|
264
|
+
"@deepseek-ai/dsh-host-open-in-app": "npm:@sparkelf/dsh-host-open-in-app@0.1.6-alpha.2",
|
|
265
|
+
"@deepseek-ai/dsh-host-webserver": "npm:@sparkelf/dsh-host-webserver@0.1.6-alpha.2",
|
|
266
|
+
"@deepseek-ai/dsh-invariants": "0.1.6-alpha.1",
|
|
267
|
+
"@deepseek-ai/dsh-llm": "0.1.6-alpha.1",
|
|
268
|
+
"@deepseek-ai/dsh-llm-pi-ai": "npm:@sparkelf/dsh-llm-pi-ai@0.1.6-alpha.2",
|
|
269
|
+
"@deepseek-ai/dsh-native-command": "npm:@sparkelf/dsh-native-command@0.1.6-alpha.2",
|
|
270
|
+
"@deepseek-ai/dsh-session": "0.1.6-alpha.1",
|
|
271
|
+
"@deepseek-ai/dsh-session-format-v0-to-v1": "npm:@sparkelf/dsh-session-format-v0-to-v1@0.1.6-alpha.2",
|
|
272
|
+
"@deepseek-ai/dsh-session-log-export": "npm:@sparkelf/dsh-session-log-export@0.1.6-alpha.2",
|
|
273
|
+
"@deepseek-ai/dsh-session-query-sqlite": "npm:@sparkelf/dsh-session-query-sqlite@0.1.6-alpha.2",
|
|
274
|
+
"@deepseek-ai/dsh-settings": "0.1.6-alpha.1",
|
|
275
|
+
"@deepseek-ai/dsh-skill": "0.1.6-alpha.1",
|
|
276
|
+
"@deepseek-ai/dsh-subagent": "0.1.6-alpha.1",
|
|
277
|
+
"@deepseek-ai/dsh-system-prompt": "0.1.6-alpha.1",
|
|
278
|
+
"@deepseek-ai/dsh-tools": "npm:@sparkelf/dsh-tools@0.1.6-alpha.2",
|
|
279
|
+
"@deepseek-ai/dsh-user-approval": "0.1.6-alpha.1",
|
|
280
|
+
"@deepseek-ai/dsh-util-values": "0.1.6-alpha.1",
|
|
281
|
+
"@deepseek-ai/dsh-web-app": "npm:@sparkelf/dsh-web-app@0.1.6-alpha.2",
|
|
282
|
+
"@deepseek-ai/dsh-web-frontend": "npm:@sparkelf/dsh-web-frontend@0.1.6-alpha.2",
|
|
283
|
+
"@deepseek-ai/dsh-workspace": "npm:@sparkelf/dsh-workspace@0.1.6-alpha.2",
|
|
284
|
+
"@huanlin/dsh-plugin-better-locale": "0.4.3",
|
|
285
|
+
"dsh-better-sidebar": "0.19.1"
|
|
286
|
+
},
|
|
287
|
+
"peerDependencies": {
|
|
288
|
+
"@deepseek-ai/cordis": ">=4.0.2"
|
|
289
|
+
},
|
|
290
|
+
"private": false,
|
|
291
|
+
"publishConfig": {
|
|
292
|
+
"access": "public"
|
|
293
|
+
},
|
|
294
|
+
"repository": {
|
|
295
|
+
"directory": "packages/standalone/dataops-standalone",
|
|
296
|
+
"type": "git",
|
|
297
|
+
"url": "git+https://github.com/SparkElf/deepseek-harness-plus.git"
|
|
298
|
+
},
|
|
299
|
+
"type": "module",
|
|
300
|
+
"types": "lib/types/index.d.ts",
|
|
301
|
+
"version": "0.2.0-rc.18"
|
|
302
|
+
}
|