Prepares the repo for its new home at soulcraftlabs/open-brainy ahead of the Forgejo transfer: package name, publish registry, release script, and every install/import reference across docs, src, tests, examples, and integrations now point at @soulcraftlabs/brainy on The Source. The npmjs storefront leg and byte-identity pair verification are stripped from the release script — The Source is now the only publish target. README gains an Open Brainy explainer and a registry note for consumers. @soulcraft/brainy 10.4.2 was the last release under the old name.
18 lines
No EOL
483 B
JavaScript
18 lines
No EOL
483 B
JavaScript
#!/usr/bin/env node
|
|
|
|
/**
|
|
* Modern TypeScript CLI Runner
|
|
*
|
|
* This is the entry point after npm install @soulcraftlabs/brainy
|
|
* It runs the compiled TypeScript CLI code
|
|
*/
|
|
|
|
// Use the compiled TypeScript CLI
|
|
import('../dist/cli/index.js').catch(err => {
|
|
// Fallback to legacy CLI if new one isn't built yet
|
|
import('./brainy.js').catch(() => {
|
|
console.error('Error: CLI not properly built. Please reinstall the package.')
|
|
console.error(err)
|
|
process.exit(1)
|
|
})
|
|
}) |