diff --git a/the-matrix/dist/.vite/manifest.json b/the-matrix/dist/.vite/manifest.json deleted file mode 100644 index 54c47cb..0000000 --- a/the-matrix/dist/.vite/manifest.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "index.html": { - "file": "assets/index-CBu1T9J9.js", - "name": "index", - "src": "index.html", - "isEntry": true - } -} \ No newline at end of file diff --git a/the-matrix/dist/icons/icon-192.png b/the-matrix/dist/icons/icon-192.png deleted file mode 100644 index a84aef3..0000000 Binary files a/the-matrix/dist/icons/icon-192.png and /dev/null differ diff --git a/the-matrix/dist/icons/icon-512.png b/the-matrix/dist/icons/icon-512.png deleted file mode 100644 index dcf2b40..0000000 Binary files a/the-matrix/dist/icons/icon-512.png and /dev/null differ diff --git a/the-matrix/dist/index.html b/the-matrix/dist/index.html deleted file mode 100644 index d5b482a..0000000 --- a/the-matrix/dist/index.html +++ /dev/null @@ -1,679 +0,0 @@ - - - - - - The Workshop — Timmy - - - - - - - - - - - - - - -
-

THE WORKSHOP

-
FPS: --
-
JOBS: 0
-
- Balance: -- sats - ⚡ Top Up -
-
- -
OFFLINE
-
- - -
-
TIMMY IDENTITY
-
-
⚡ 0 zaps sent
-
- - -
- - -
- - -
- ⚡ Low balance — - -
- - -
- - -
- - -
- -

⚡ TIMMY — JOB SUBMISSION

- -
-
YOUR REQUEST
- - - Open full UI ↗ -
- -
-
EVAL FEE
-
10 sats
-
LIGHTNING INVOICE
-
-
- -
- - -
- -
-
WORK FEE
-
-- sats
-
LIGHTNING INVOICE
-
-
- -
- - -
- -
-
AI RESULT
-

-      
-    
- -
-
-
- - -
- -

⚡ TIMMY — SESSION

- - -
-
DEPOSIT AMOUNT (200–10,000 sats)
-
- - - - - - -
-
- - sats -
- -
-
- - -
-
DEPOSIT AMOUNT
-
-- sats
-
SCAN OR COPY INVOICE
-
[ QR ]
-
-
- -
- - -
-
- - -
-
BALANCE
-
-- sats
-

- TYPE IN THE INPUT BAR TO ASK TIMMY.
EACH REQUEST DEDUCTS FROM YOUR BALANCE. -

- -
-
- - -
-
TOPUP AMOUNT (200–10,000 sats)
-
- - - - - - -
-
- - sats -
- - - - -
- -
- -
-
- - -
- - -
-
CLICK TO ENTER · WASD TO MOVE · ESC TO EXIT
-
- - -
-
-
- - -
- -
- GPU context lost — recovering... -
- - - diff --git a/the-matrix/dist/manifest.json b/the-matrix/dist/manifest.json deleted file mode 100644 index 83dd3a4..0000000 --- a/the-matrix/dist/manifest.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "name": "The Matrix", - "short_name": "The Matrix", - "description": "Timmy Tower World — live agent network visualization", - "start_url": "/", - "display": "standalone", - "orientation": "landscape", - "background_color": "#000000", - "theme_color": "#00ff41", - "icons": [ - { - "src": "/icons/icon-192.png", - "sizes": "192x192", - "type": "image/png", - "purpose": "any maskable" - }, - { - "src": "/icons/icon-512.png", - "sizes": "512x512", - "type": "image/png", - "purpose": "any maskable" - } - ] -} diff --git a/the-matrix/dist/sw.js b/the-matrix/dist/sw.js deleted file mode 100644 index 86cf4c6..0000000 --- a/the-matrix/dist/sw.js +++ /dev/null @@ -1,45 +0,0 @@ -/* sw.js — Matrix PWA service worker - * PRECACHE_URLS is replaced at build time by the generate-sw Vite plugin. - * Registration is gated to import.meta.env.PROD in main.js, so this template - * file is never evaluated by browsers during development. - */ -const CACHE_NAME = 'timmy-matrix-v1'; -const PRECACHE_URLS = [ - "/", - "/manifest.json", - "/icons/icon-192.png", - "/icons/icon-512.png", - "/assets/index-CBu1T9J9.js" -]; - -self.addEventListener('install', event => { - event.waitUntil( - caches.open(CACHE_NAME).then(cache => cache.addAll(PRECACHE_URLS)) - ); - self.skipWaiting(); -}); - -self.addEventListener('activate', event => { - event.waitUntil( - caches.keys().then(keys => - Promise.all(keys.filter(k => k !== CACHE_NAME).map(k => caches.delete(k))) - ) - ); - self.clients.claim(); -}); - -self.addEventListener('fetch', event => { - if (event.request.method !== 'GET') return; - event.respondWith( - caches.match(event.request).then(cached => { - if (cached) return cached; - return fetch(event.request).then(response => { - if (!response || response.status !== 200 || response.type !== 'basic') { - return response; - } - caches.open(CACHE_NAME).then(cache => cache.put(event.request, response.clone())); - return response; - }); - }) - ); -}); diff --git a/the-matrix/package-lock.json b/the-matrix/package-lock.json index 65fa405..092e1e3 100644 --- a/the-matrix/package-lock.json +++ b/the-matrix/package-lock.json @@ -13,7 +13,7 @@ "three": "0.171.0" }, "devDependencies": { - "vite": "^5.4.0" + "vite": "^5.4.15" } }, "node_modules/@esbuild/aix-ppc64": {