@seflless/ghosttown 1.2.2 → 1.2.3

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
@@ -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.3",
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",