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" } }