Redesign: Replace site with interactive terminal interface

- New xterm.js-based terminal with retro CRT aesthetics
- Matrix chat integration with real-time messaging
- Bluesky social media integration
- Interactive commands (help, about, chat, bluesky, privacy, etc.)
- Responsive design with mobile support
- Privacy policy command
- Quick navigation links (Docs, GitHub, Bluesky)
- Preserved all image assets (blocks, items, particles, icons)
- Updated README and package.json with new features
This commit is contained in:
2026-03-04 23:15:44 +11:00
parent 361ea9ba90
commit 4be791f90e
26 changed files with 1607 additions and 6847 deletions

29
package.json Normal file
View File

@@ -0,0 +1,29 @@
{
"name": "lit.ruv.wtf",
"version": "1.0.0",
"description": "Interactive terminal interface for lit.ruv.wtf - A retro-styled command line experience with chat, documentation, and more.",
"main": "index.html",
"scripts": {
"start": "python3 -m http.server 8000",
"start-alt": "python -m SimpleHTTPServer 8000"
},
"keywords": [
"terminal",
"xterm",
"retro",
"cli",
"web-terminal",
"matrix",
"chat",
"interactive"
],
"author": "Max Litruv Boonzaayer",
"license": "MIT",
"dependencies": {},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/litruv/lit.ruv.wtf"
},
"homepage": "https://lit.ruv.wtf"
}