@workbench-kit/adapters 0.0.2-prototype.0.2.2 → 0.0.2-prototype.0.2.20

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/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "@workbench-kit/adapters",
3
- "version": "0.0.2-prototype.0.2.2",
3
+ "version": "0.0.2-prototype.0.2.20",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
7
7
  ".": "./src/index.ts",
8
- "./library": "./src/library.ts",
9
- "./runtime": "./src/runtime.ts",
10
- "./workspace": "./src/workspace.ts",
11
- "./workbench-demo": "./src/workbench-demo.ts",
12
- "./workbench-demo-config": "./src/workbench-demo-config.ts",
13
- "./persistence": "./src/persistence.ts"
8
+ "./library": "./src/library/library.ts",
9
+ "./runtime": "./src/runtime/runtime.ts",
10
+ "./workspace": "./src/workspace/workspace.ts",
11
+ "./workbench-demo": "./src/demo/workbench-demo.ts",
12
+ "./workbench-demo-config": "./src/demo/workbench-demo-config.ts",
13
+ "./persistence": "./src/persistence/persistence.ts"
14
14
  },
15
15
  "files": [
16
16
  "src",
@@ -20,9 +20,9 @@
20
20
  "!src/**/*.stories.tsx"
21
21
  ],
22
22
  "dependencies": {
23
- "@workbench-kit/contracts": "0.0.2-prototype.0.2.2",
24
- "@workbench-kit/runtime": "0.0.2-prototype.0.2.2",
25
- "@workbench-kit/workspace": "0.0.2-prototype.0.2.2"
23
+ "@workbench-kit/contracts": "0.0.2-prototype.0.2.20",
24
+ "@workbench-kit/runtime": "0.0.2-prototype.0.2.20",
25
+ "@workbench-kit/workspace": "0.0.2-prototype.0.2.20"
26
26
  },
27
27
  "description": "Workbench Kit adapters for workspace repositories and runtime transports.",
28
28
  "publishConfig": {
@@ -4,7 +4,7 @@ import type { WorkspaceFile } from '@workbench-kit/workspace';
4
4
  import {
5
5
  widgetStudioBuiltinAssetFiles,
6
6
  widgetStudioCustomAssetExampleFiles,
7
- } from './widget-studio-assets.js';
7
+ } from '../widget-studio/widget-studio-assets.js';
8
8
 
9
9
  export const integratedShellWorkspaceFolders = [
10
10
  'src',
@@ -194,7 +194,7 @@ export const integratedShellWorkspaceFiles: WorkspaceFile[] = [
194
194
  export {
195
195
  widgetStudioBuiltinAssetFiles,
196
196
  widgetStudioCustomAssetExampleFiles,
197
- } from './widget-studio-assets.js';
197
+ } from '../widget-studio/widget-studio-assets.js';
198
198
 
199
199
  export const integratedShellInitialRuntimeMessages: RuntimeChatMessage[] = [
200
200
  {
package/src/index.ts CHANGED
@@ -1,8 +1,8 @@
1
- export * from './runtime';
2
- export * from './library';
3
- export * from './workspace';
4
- export * from './workbench-demo';
5
- export * from './widget-studio-assets';
6
- export * from './widget-studio-asset-package';
7
- export * from './workbench-demo-config';
8
- export * from './persistence';
1
+ export * from './runtime/runtime';
2
+ export * from './library/library';
3
+ export * from './workspace/workspace';
4
+ export * from './demo/workbench-demo';
5
+ export * from './widget-studio/widget-studio-assets';
6
+ export * from './widget-studio/widget-studio-asset-package';
7
+ export * from './demo/workbench-demo-config';
8
+ export * from './persistence/persistence';
File without changes
File without changes
File without changes