From ce16de922fc0dd5e0da917eefc33ae3a07b4415a Mon Sep 17 00:00:00 2001 From: Thomas Plumpton Date: Mon, 24 Mar 2025 20:15:50 +0000 Subject: [PATCH] fix(config): added missing types export in package.json so consumers can see types properly --- packages/library/package.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/packages/library/package.json b/packages/library/package.json index f65f3e02..5d8e1a1d 100644 --- a/packages/library/package.json +++ b/packages/library/package.json @@ -1,13 +1,16 @@ { "name": "@tomplum/react-git-log", + "author": "Thomas Plumpton", "repository": "https://github.com/TomPlum/react-git-log", "description": "A flexible, themable, React component for visualising Git commit history, branch and tag metadata.", - "version": "1.1.1", + "version": "1.1.2", + "license": "Apache-2.0", "type": "module", "main": "dist/react-git-log.umd.js", "module": "dist/react-git-log.es.js", "types": "dist/index.d.ts", "exports": { + "types": "./dist/index.d.ts", "import": "./dist/react-git-log.es.js", "require": "./dist/react-git-log.umd.js" },