@freestyle-sh/with-sandbox-agent 0.0.7 → 0.0.9

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/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import * as freestyle_sandboxes from 'freestyle-sandboxes';
2
- import { VmWith, VmWithInstance, VmSpec } from 'freestyle-sandboxes';
1
+ import * as freestyle from 'freestyle';
2
+ import { VmWith, VmWithInstance, VmSpec } from 'freestyle';
3
3
  import { SandboxAgent } from 'sandbox-agent';
4
4
 
5
5
  type KnownEnvKeys = "ANTHROPIC_API_KEY" | "OPENAI_API_KEY" | "AMP_API_KEY";
@@ -35,7 +35,7 @@ declare class VmSandboxAgentInstance extends VmWithInstance {
35
35
  domain: string;
36
36
  }>;
37
37
  /** @internal */
38
- get _vm(): freestyle_sandboxes.Vm;
38
+ get _vm(): freestyle.Vm;
39
39
  }
40
40
 
41
41
  export { VmSandboxAgent };
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { VmWith, VmSpec, VmWithInstance } from 'freestyle-sandboxes';
1
+ import { VmWith, VmSpec, VmWithInstance } from 'freestyle';
2
2
  import { SandboxAgent } from 'sandbox-agent';
3
3
 
4
4
  class VmSandboxAgent extends VmWith {
package/package.json CHANGED
@@ -1,9 +1,10 @@
1
1
  {
2
2
  "name": "@freestyle-sh/with-sandbox-agent",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
+ "packageManager": "pnpm@10.11.0",
4
5
  "private": false,
5
6
  "dependencies": {
6
- "freestyle-sandboxes": "^0.1.28",
7
+ "freestyle": "^0.1.46",
7
8
  "sandbox-agent": "^0.1.3"
8
9
  },
9
10
  "devDependencies": {
@@ -25,6 +26,7 @@
25
26
  "dist"
26
27
  ],
27
28
  "scripts": {
28
- "build": "pkgroll"
29
+ "build": "pkgroll",
30
+ "prepublishOnly": "pnpm run build"
29
31
  }
30
- }
32
+ }