From cbb54052836efa605a83dfa7f0312d043378cab5 Mon Sep 17 00:00:00 2001
From: Adam Piontek <adam@73k.us>
Date: Thu, 8 Sep 2022 06:44:01 -0400
Subject: [PATCH] modify package.json, minor README edits

---
 README.md    |  2 +-
 package.json | 10 +++++-----
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/README.md b/README.md
index 2704054..46b267f 100644
--- a/README.md
+++ b/README.md
@@ -10,7 +10,7 @@ The most significant addition is that this solver will return one possible "best
 
 This can help with games where the goal is not clearing the board, but clearing a certain set of cards or hitting a threshold of points.
 
-*NOTE:* The "best path" returned is the first one found that clears the most cards. Hypothetically, a board could have multiple paths to clear the same number of cards cards, and the path the solver returns might not clear the cards you need to clear.
+*NOTE:* The "best path" returned is the first one found that clears the most cards. Hypothetically, a board could have multiple paths to clear the same number of cards. The path the solver returns might not clear the cards you need to clear. A possible future improvement could be returning, say, the top 5 best paths.
 
 *NOTE:* Unsolvable boards can take a long time to process, so be patient. The sample unsolvable board below takes my computer almost 6 minutes to conclude.
 
diff --git a/package.json b/package.json
index 9b06223..a54c5a6 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
   "name": "javascript-tri-peaks-solitaire-solver",
-  "version": "1.0.0",
+  "version": "1.0.1",
   "description": "A brute force solver for tri peaks solitaire written in javascript",
   "main": "solver.js",
   "scripts": {
@@ -10,14 +10,14 @@
   },
   "repository": {
     "type": "git",
-    "url": "git+https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver.git"
+    "url": "git+https://github.com/apiontek/javascript-tri-peaks-solitaire-solver.git"
   },
-  "author": "Courtney Pitcher",
+  "author": "Adam Piontek, Courtney Pitcher",
   "license": "ISC",
   "bugs": {
-    "url": "https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver/issues"
+    "url": "https://github.com/apiontek/javascript-tri-peaks-solitaire-solver/issues"
   },
-  "homepage": "https://github.com/IgniparousTempest/javascript-tri-peaks-solitaire-solver#readme",
+  "homepage": "https://github.com/apiontek/javascript-tri-peaks-solitaire-solver#readme",
   "devDependencies": {
     "eslint": "^8.23.0",
     "eslint-config-prettier": "^8.5.0",