From 19eeb92dbafa0479d97bba621e80973dc07dc7af Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Wed, 4 Dec 2024 10:36:06 +0000 Subject: [PATCH] fix: add repo/bugs/etc to package.json Adds this project's GitHub repo to the manifest so links appear on npm and other websites. --- package.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/package.json b/package.json index fe0a0a1..c6e0fdf 100644 --- a/package.json +++ b/package.json @@ -6,6 +6,14 @@ "type": "module", "author": "marin@chainsafe.io", "license": "MIT", + "homepage": "https://github.com/ChainSafe/netmask#readme", + "repository": { + "type": "git", + "url": "git+https://github.com/ChainSafe/netmask.git" + }, + "bugs": { + "url": "https://github.com/ChainSafe/netmask/issues" + }, "scripts": { "lint": "eslint src/ test/", "build": "tsc",