UNPKG

@chess-labs/terminal

Version:

A command-line chess game powered by Stockfish

15 lines 340 B
#!/usr/bin/env node import { ChessCLI } from './cli.js'; async function main() { const cli = new ChessCLI(); try { await cli.start(); } catch (error) { console.error('Fatal error:', error); process.exit(1); } } // Run the application main().catch(console.error); //# sourceMappingURL=index.js.map