diff options
| author | Dax Raad <[email protected]> | 2026-04-25 14:22:49 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-04-25 14:23:17 -0400 |
| commit | 3eee2f6afa5c7fde20d0e838143832b681795d9f (patch) | |
| tree | e2ee4385e034a921504e782eba5cfb2822879b4b /packages/core/package.json | |
| parent | ff4b60e1f3d2ad83a74785443dd041ed4e7814bf (diff) | |
| download | opencode-3eee2f6afa5c7fde20d0e838143832b681795d9f.tar.gz opencode-3eee2f6afa5c7fde20d0e838143832b681795d9f.zip | |
core: move cross-spawn-spawner from opencode to core package
Moved the cross-spawn-spawner module from packages/opencode to packages/core
to enable code sharing across the monorepo. This consolidates the process
spawning infrastructure into the core package so other packages can use
cross-platform child process spawning without duplicating the implementation.
Updated all import statements across the codebase to reference the new
location (@opencode-ai/core/effect/cross-spawn-spawner). Removed the
local copy from the opencode package along with its tests.
Diffstat (limited to 'packages/core/package.json')
| -rw-r--r-- | packages/core/package.json | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/packages/core/package.json b/packages/core/package.json index a244ea8b4..bd826de35 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -18,23 +18,21 @@ "imports": {}, "devDependencies": { "@tsconfig/bun": "catalog:", - "@types/semver": "catalog:", "@types/bun": "catalog:", - "@types/npmcli__arborist": "6.3.3" + "@types/cross-spawn": "catalog:" }, "dependencies": { "@effect/opentelemetry": "catalog:", "@effect/platform-node": "catalog:", - "@npmcli/arborist": "catalog:", "@opentelemetry/api": "1.9.0", "@opentelemetry/context-async-hooks": "2.6.1", "@opentelemetry/exporter-trace-otlp-http": "0.214.0", "@opentelemetry/sdk-trace-base": "2.6.1", "effect": "catalog:", + "cross-spawn": "catalog:", "glob": "13.0.5", "mime-types": "3.0.2", "minimatch": "10.2.5", - "semver": "catalog:", "xdg-basedir": "5.1.0", "zod": "catalog:" }, |
