From a392baf77c980f3dda6eda8858c7e21ed2d9d324 Mon Sep 17 00:00:00 2001 From: pr0uxx Date: Thu, 30 Jul 2026 12:11:45 +0100 Subject: [PATCH] Add repository metadata to package.json Adds the Git repository `type` and `url` fields so the package points to its source on GitHub, improving npm metadata and discoverability. --- package-lock.json | 4 ++-- package.json | 6 +++++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index d14e183..7efec68 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@software-hardware-integration-lab/log-engine", - "version": "0.0.3-beta1", + "version": "0.0.3-beta2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@software-hardware-integration-lab/log-engine", - "version": "0.0.3-beta1", + "version": "0.0.3-beta2", "hasInstallScript": true, "dependencies": { "typia": "~12.1.1" diff --git a/package.json b/package.json index 8ae5ec5..cd45bf3 100644 --- a/package.json +++ b/package.json @@ -1,8 +1,12 @@ { - "version": "0.0.3-beta1", + "version": "0.0.3-beta2", "name": "@software-hardware-integration-lab/log-engine", "description": "Logging engine with ability to add plugins for any destination", "author": "Michael Howard", + "repository": { + "type": "git", + "url": "git+https://github.com/Software-Hardware-Integration-Lab/LogEngine.git" + }, "type": "module", "scripts": { "build": "npm run clean:bin && tspc -p tsconfig.json",