From e30f8c8a68a86ad1cf31bff2a2722a8cbdf98515 Mon Sep 17 00:00:00 2001 From: Chris Wanstrath <2+defunkt@users.noreply.github.com> Date: Tue, 13 Jan 2026 15:23:56 -0800 Subject: [PATCH] fix packaging --- package.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 5afd0ed..0014bee 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,16 @@ { "name": "forge", - "module": "src/index.ts", + "version": "0.1.0", "type": "module", + "main": "src/index.tsx", + "module": "src/index.tsx", + "types": "src/index.tsx", + "exports": { + ".": { + "import": "./src/index.tsx", + "types": "./src/index.tsx" + } + }, "scripts": { "dev": "bun build:spa && bun run --hot server.tsx", "test": "bun test",