Summary
toolcraft is published, but installing it as a standalone dependency with Bun currently fails while resolving parts of its runtime dependency graph.
Minimal repro
{
"type": "module",
"dependencies": {
"toolcraft": "0.0.3"
}
}
Then run:
Result
Bun reports unresolved dependencies while installing toolcraft@0.0.3, including workspace packages and tiny-mcp-client.
I checked the published toolcraft@0.0.3 metadata and tarball:
- The
@poe-code/* workspace packages are listed in bundleDependencies and are present in the tarball.
tiny-mcp-client is listed as a dependency but is not present in bundleDependencies, and it is not resolvable from the public npm registry.
Expected
A public consumer should be able to install and import Toolcraft without local workspace overrides or vendored stubs.
Possible fixes:
- Publish
tiny-mcp-client to npm, or bundle it with toolcraft.
- If Bun is expected to work, verify the bundled
@poe-code/* dependencies install cleanly there too.
Environment
toolcraft: 0.0.3
- Node:
v22.14.0
- Bun:
1.3.11
Summary
toolcraftis published, but installing it as a standalone dependency with Bun currently fails while resolving parts of its runtime dependency graph.Minimal repro
{ "type": "module", "dependencies": { "toolcraft": "0.0.3" } }Then run:
Result
Bun reports unresolved dependencies while installing
toolcraft@0.0.3, including workspace packages andtiny-mcp-client.I checked the published
toolcraft@0.0.3metadata and tarball:@poe-code/*workspace packages are listed inbundleDependenciesand are present in the tarball.tiny-mcp-clientis listed as a dependency but is not present inbundleDependencies, and it is not resolvable from the public npm registry.Expected
A public consumer should be able to install and import Toolcraft without local workspace overrides or vendored stubs.
Possible fixes:
tiny-mcp-clientto npm, or bundle it withtoolcraft.@poe-code/*dependencies install cleanly there too.Environment
toolcraft:0.0.3v22.14.01.3.11