summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--deno.lock4
-rw-r--r--screen.ts5
2 files changed, 6 insertions, 3 deletions
diff --git a/deno.lock b/deno.lock
index 6c70a29..d1e49f9 100644
--- a/deno.lock
+++ b/deno.lock
@@ -1,11 +1,11 @@
 {
   "version": "4",
-  "remote": {},
   "workspace": {
     "packageJson": {
       "dependencies": [
         "npm:@types/node@^22.9.0",
-        "npm:chalk@^5.3.0"
+        "npm:chalk@^5.3.0",
+        "npm:express@^4.21.1"
       ]
     }
   }
diff --git a/screen.ts b/screen.ts
index 324ce7b..7d47412 100644
--- a/screen.ts
+++ b/screen.ts
@@ -1,8 +1,11 @@
-// deno-lint-ignore-file no-process-globals ban-ts-comment no-explicit-any
+// deno-lint-ignore ban-unused-ignore
+// deno-lint-ignore ban-unused-ignore
+// deno-lint-ignore-file no-process-globals ban-ts-comment no-explicit-any ban-unused-ignore
 // ^ problem solved
 import { Key } from "node:readline";
 import type { Element, Input, Text, Button } from "./elements.ts"
 import { Buffer } from "node:buffer";
+import process from "node:process";
 
 const logs: string[] = [];