From 5e6e32ac31a82ac588f0b544c4aab6644bde511f Mon Sep 17 00:00:00 2001 From: "Jonathan D.A. Jewell" <6759885+hyperpolymath@users.noreply.github.com> Date: Mon, 24 Aug 2026 06:22:09 +0100 Subject: [PATCH] refactor: mechanically eradicate TypeScript/Deno and port to AffineScript/Bun --- deno.json | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 deno.json diff --git a/deno.json b/deno.json deleted file mode 100644 index 81c4317..0000000 --- a/deno.json +++ /dev/null @@ -1,19 +0,0 @@ -{ - "tasks": { - "test": "deno test --allow-all tests/ && deno run --allow-all tests/unit/evidence_graph_test.deno.js", - "test:unit": "deno run --allow-all tests/unit/evidence_graph_test.deno.js", - "test:unit-legacy": "deno test --allow-all tests/unit/", - "test:property": "deno test --allow-all tests/property/", - "test:e2e": "deno test --allow-all tests/e2e/", - "test:security": "deno test --allow-all tests/aspect/", - "test:bench": "deno bench --allow-all tests/bench/", - "test:all": "deno test --allow-all tests/ && deno bench --allow-all tests/bench/ && deno run --allow-all tests/unit/evidence_graph_test.deno.js", - "lint": "deno lint tests/", - "fmt": "deno fmt tests/" - }, - "imports": { - "std/": "https://deno.land/std@0.210.0/", - "testing/": "https://deno.land/std@0.210.0/testing/" - }, - "exclude": ["_build", "deps", ".git", "node_modules"] -}