howlongtobeat-core 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -6
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -3,7 +3,7 @@
3
3
  A TypeScript/Deno library to retrieve game completion times from
4
4
  [HowLongToBeat.com](https://howlongtobeat.com).
5
5
 
6
- [![JSR](https://jsr.io/badges/@tapan/howlongtobeat)](https://jsr.io/howlongtobeat-core)
6
+ [![JSR](https://jsr.io/badges/@tapan/howlongtobeat)](https://jsr.io/@tapan/howlongtobeat)
7
7
  [![npm](https://img.shields.io/npm/v/howlongtobeat-core)](https://www.npmjs.com/package/howlongtobeat-core)
8
8
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
9
9
 
@@ -198,11 +198,6 @@ deno task fmt
198
198
  deno task lint
199
199
  ```
200
200
 
201
- ## Credits
202
-
203
- This is a TypeScript port of
204
- [ScrappyCocco/HowLongToBeat-PythonAPI](https://github.com/ScrappyCocco/HowLongToBeat-PythonAPI).
205
-
206
201
  ## License
207
202
 
208
203
  MIT © 2026
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "howlongtobeat-core",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "TypeScript library to retrieve game completion times from HowLongToBeat.com",
5
5
  "keywords": [
6
6
  "howlongtobeat",
@@ -28,6 +28,7 @@
28
28
  "require": "./script/mod.js"
29
29
  }
30
30
  },
31
+ "scripts": {},
31
32
  "engines": {
32
33
  "node": ">=18"
33
34
  },