From 5df3dbd1b5c2a23fbf5a38e903fc8736c19ce000 Mon Sep 17 00:00:00 2001 From: kenneth Date: Mon, 19 Jan 2026 00:08:04 +0000 Subject: [PATCH] fix(core): correct main and types paths in package.json Paths pointed to index.ts but actual file is at src/index.ts. Co-authored-by: Ona --- packages/aris-core/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/aris-core/package.json b/packages/aris-core/package.json index 86e7bd8..c8106bb 100644 --- a/packages/aris-core/package.json +++ b/packages/aris-core/package.json @@ -2,8 +2,8 @@ "name": "@aris/core", "version": "0.0.0", "type": "module", - "main": "index.ts", - "types": "index.ts", + "main": "src/index.ts", + "types": "src/index.ts", "scripts": { "test": "bun test ." }