From 77b1da5652dd6397e7c28fa730285aad8f65805d Mon Sep 17 00:00:00 2001 From: Lilith Date: Wed, 25 Feb 2026 13:53:18 -0800 Subject: [PATCH] =?UTF-8?q?deps-upgrade(blog):=20=E2=AC=86=EF=B8=8F=20Upda?= =?UTF-8?q?te=20dependencies=20in=20shared=20utilities=20for=20blog=20feat?= =?UTF-8?q?ure?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/blog/shared/package.json | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/features/blog/shared/package.json b/features/blog/shared/package.json index 1a5bacc65..c7d9a8039 100644 --- a/features/blog/shared/package.json +++ b/features/blog/shared/package.json @@ -2,9 +2,19 @@ "name": "@lilith/blog-shared", "version": "0.1.0", "private": true, - "main": "./src/index.ts", - "types": "./src/index.ts", + "main": "./dist/index.js", + "types": "./dist/index.d.ts", "exports": { - ".": "./src/index.ts" + ".": { + "types": "./dist/index.d.ts", + "import": "./dist/index.js" + } + }, + "scripts": { + "build": "lixbuild" + }, + "devDependencies": { + "@lilith/lix-configs": "^1.0.1", + "tsup": "^8.5.1" } }