From 7e0ecf322b1d00ce7662446e081b53a2cb1ae596 Mon Sep 17 00:00:00 2001 From: Kailas Mahavarkar <66670953+KailasMahavarkar@users.noreply.github.com> Date: Wed, 15 Apr 2026 03:55:22 +0530 Subject: [PATCH] chore: make setup and context scripts polyglot (Node + Bun) using tsx --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index bdacc35..cda48fc 100644 --- a/package.json +++ b/package.json @@ -8,14 +8,14 @@ "type": "module", "scripts": { "build": "tsc --noEmit", - "compile:context": "bun src/internal/compile-runtime-context.ts", + "compile:context": "tsx src/internal/compile-runtime-context.ts", "test": "bun test", "start": "bun src/index.ts", "dev": "bun --watch src/index.ts", "docker:run": "bun scripts/ensure-singleton.ts", - "skills:index": "bun scripts/generate-skills-index.ts", + "skills:index": "tsx scripts/generate-skills-index.ts", "mcp:start": "bun scripts/start-mcp.ts", - "setup": "bun scripts/setup.ts" + "setup": "tsx scripts/setup.ts" }, "author": "Orkait", "license": "MIT",