@deepseek-ai/dsh-client-ui-workspace 0.0.1-rc.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.
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Workspace picker plugin, node half. Pure UI plugin: the empty apply exists
3
+ * so the plugin appears in the host cordis.yml / Loader (load and lifecycle
4
+ * follow the host; the browser half ships via exports["./client"], discovered
5
+ * through the package.json dsh.client declaration).
6
+ */
7
+ /** Host plugin body — no host-side behavior for the workspace picker plugin. */
8
+ export declare function apply(): void;
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Package-owned invariant companion for `@deepseek-ai/dsh-client-ui-workspace`.
3
+ * @module @deepseek-ai/dsh-client-ui-workspace/invariant
4
+ */
5
+ import type { Context } from '@deepseek-ai/cordis';
6
+ /** Cordis companion plugin name. */
7
+ export declare const name = "client-ui-workspace-invariant";
8
+ /** Service required before the companion can reserve package ownership. */
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,79 @@
1
+ {
2
+ "name": "@deepseek-ai/dsh-client-ui-workspace",
3
+ "description": "Workspace picker plugin: one WorkspacePicker registered into the sidebar and empty-state workspace slots",
4
+ "version": "0.0.1-rc.1",
5
+ "publishConfig": {
6
+ "access": "restricted"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/deepseek-ai/deepseek-harness.git",
11
+ "directory": "packages/client/ui-workspace"
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
+ "./client": {
26
+ "types": "./lib/types/client/index.d.ts",
27
+ "default": "./lib/client.js"
28
+ },
29
+ "./src/*": "./src/*",
30
+ "./package.json": "./package.json"
31
+ },
32
+ "dsh": {
33
+ "client": {
34
+ "inject": [
35
+ "@deepseek-ai/dsh-client-locale",
36
+ "@deepseek-ai/dsh-client-runtime",
37
+ "@deepseek-ai/dsh-client-ui-conversation",
38
+ "@deepseek-ai/dsh-client-ui-sidebar"
39
+ ],
40
+ "platform": "web"
41
+ }
42
+ },
43
+ "license": "BSD-3-Clause",
44
+ "dependencies": {
45
+ "clsx": "^2.0.0"
46
+ },
47
+ "peerDependencies": {
48
+ "react": "^18.2.0",
49
+ "@deepseek-ai/dsh-client-locale": "^0.0.1-rc.1",
50
+ "@deepseek-ai/dsh-client-runtime": "^0.0.1-rc.1",
51
+ "@deepseek-ai/dsh-client-ui-slots": "^0.0.1-rc.1",
52
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.0.1-rc.1",
53
+ "@deepseek-ai/dsh-invariants": "^0.0.1-rc.1",
54
+ "@deepseek-ai/cordis": "^4.0.1-rc.1"
55
+ },
56
+ "devDependencies": {
57
+ "@types/react": "~18.3.1",
58
+ "react": "^18.2.0",
59
+ "@deepseek-ai/dsh-client-locale": "^0.0.1-rc.1",
60
+ "@deepseek-ai/dsh-client-runtime": "^0.0.1-rc.1",
61
+ "@deepseek-ai/dsh-client-test-runtime": "^0.0.1-rc.1",
62
+ "@deepseek-ai/dsh-client-ui-conversation": "^0.0.1-rc.1",
63
+ "@deepseek-ai/dsh-client-ui-primitives": "^0.0.1-rc.1",
64
+ "@deepseek-ai/dsh-client-ui-sidebar": "^0.0.1-rc.1",
65
+ "@deepseek-ai/dsh-client-ui-slots": "^0.0.1-rc.1",
66
+ "@deepseek-ai/dsh-invariants": "^0.0.1-rc.1",
67
+ "@deepseek-ai/cordis": "^4.0.1-rc.1"
68
+ },
69
+ "files": [
70
+ "lib/index.js",
71
+ "lib/invariant.js",
72
+ "lib/client.js",
73
+ "lib/types/**/*.d.ts"
74
+ ],
75
+ "scripts": {
76
+ "bundle": "tsdown",
77
+ "watch": "tsdown --watch"
78
+ }
79
+ }