@seflless/ghosttown 1.2.2 → 1.2.4

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.
Binary file
package/bin/ghosttown.js CHANGED
@@ -651,7 +651,7 @@ function printBanner(url) {
651
651
  const BEIGE = '\x1b[38;2;255;220;150m'; // Warm yellow/beige for values (RGB: 255,220,150)
652
652
  const DIM = '\x1b[2m'; // Dimmed text
653
653
 
654
- console.log('');
654
+ // console.log('');
655
655
 
656
656
  // Open: URL
657
657
  console.log(` ${CYAN}Open:${RESET} ${BEIGE}${url}${RESET}`);
@@ -693,7 +693,7 @@ process.on('SIGINT', () => {
693
693
  httpServer.listen(HTTP_PORT, '0.0.0.0', async () => {
694
694
  // Display ASCII art banner
695
695
  try {
696
- const imagePath = path.join(__dirname, '..', 'demo', 'images', 'ghosts.png');
696
+ const imagePath = path.join(__dirname, 'assets', 'ghosts.png');
697
697
  if (fs.existsSync(imagePath)) {
698
698
  // Welcome text with orange/yellow color (bright yellow, bold)
699
699
  console.log('\n \x1b[1;93mWelcome to Ghosttown!\x1b[0m\n');
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seflless/ghosttown",
3
- "version": "1.2.2",
3
+ "version": "1.2.4",
4
4
  "description": "Web-based terminal emulator using Ghostty's VT100 parser via WebAssembly",
5
5
  "type": "module",
6
6
  "main": "./dist/ghostty-web.umd.cjs",