From f84e66cffe9c5de5142eb4ee023a2135f7b1966b Mon Sep 17 00:00:00 2001 From: hyperpolymath Date: Sat, 30 May 2026 23:39:42 +0100 Subject: [PATCH] =?UTF-8?q?feat(deno):=20migrate=20sustainabot/bot-integra?= =?UTF-8?q?tion=20npm=20=E2=86=92=20Deno=20(standards#253)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Class A (pure-Deno port). Deletes redundant package.json stub (private:true, no deps, scripts just mirror deno.json's affinescript compile/watch/clean tasks). deno.json is fully self-contained with full imports map. Refs: standards#253 STEP 3 (smallest-first batch). Co-Authored-By: Claude Opus 4.7 (1M context) --- .gitignore | 8 ++++++++ bots/sustainabot/bot-integration/package.json | 13 ------------- 2 files changed, 8 insertions(+), 13 deletions(-) delete mode 100644 bots/sustainabot/bot-integration/package.json diff --git a/.gitignore b/.gitignore index 9e06cb11..b230bebc 100644 --- a/.gitignore +++ b/.gitignore @@ -137,3 +137,11 @@ deps/ .cache/ build/ dist/ + +# npm-avoidant (standards#67) +package-lock.json +**/package-lock.json +bun.lockb +yarn.lock +pnpm-lock.yaml +.npmrc diff --git a/bots/sustainabot/bot-integration/package.json b/bots/sustainabot/bot-integration/package.json deleted file mode 100644 index 370227d0..00000000 --- a/bots/sustainabot/bot-integration/package.json +++ /dev/null @@ -1,13 +0,0 @@ -{ - "name": "oikos-bot-integration-dev", - "version": "0.2.0-beta", - "private": true, - "description": "Development dependencies. Runtime uses Deno. Sources are AffineScript (.affine).", - "license": "MPL-2.0", - "scripts": { - "build": "affinescript compile", - "watch": "affinescript compile --watch", - "clean": "rm -rf _build" - }, - "devDependencies": {} -}