From 1c9afe289fd3ad869faba0e9c8ea918268329293 Mon Sep 17 00:00:00 2001 From: Jake Shirley Date: Tue, 27 Feb 2024 12:02:51 -0800 Subject: [PATCH] Added repo link and contributors section to package.json (#14) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Added repo link and contributors section to package.json Noticed the repo was missing and wanted to add my self to the contributors section (I need to be listed now that I am making a change, right?? 😉 ). * Fixed JSON file * Updated email * Change files --- ...raft-math-b0053034-8284-4a4f-8587-7bf79829b2e3.json | 7 +++++++ libraries/math/package.json | 10 ++++++++++ 2 files changed, 17 insertions(+) create mode 100644 change/@minecraft-math-b0053034-8284-4a4f-8587-7bf79829b2e3.json diff --git a/change/@minecraft-math-b0053034-8284-4a4f-8587-7bf79829b2e3.json b/change/@minecraft-math-b0053034-8284-4a4f-8587-7bf79829b2e3.json new file mode 100644 index 0000000..44c1bc2 --- /dev/null +++ b/change/@minecraft-math-b0053034-8284-4a4f-8587-7bf79829b2e3.json @@ -0,0 +1,7 @@ +{ + "type": "patch", + "comment": "Added repo link and contributors section to package.json", + "packageName": "@minecraft/math", + "email": "jashir@mojang.com", + "dependentChangeType": "patch" +} diff --git a/libraries/math/package.json b/libraries/math/package.json index ffb9fa3..db7d71c 100644 --- a/libraries/math/package.json +++ b/libraries/math/package.json @@ -2,9 +2,19 @@ "name": "@minecraft/math", "version": "1.3.0", "author": "Raphael Landaverde (rlanda@microsoft.com)", + "contributors": [ + { + "name": "Jake Shirley", + "email": "jashir@mojang.com" + } + ], "description": "Math utilities for use with minecraft scripting modules", "main": "lib/index.js", "types": "lib/types/math-public.d.ts", + "repository": { + "type": "git", + "url": "https://github.com/Mojang/minecraft-scripting-libraries.git" + }, "scripts": { "build": "just build", "lint": "just lint",