elo-mmr-kit 0.1.0 → 0.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 +2 -0
  2. package/package.json +6 -3
package/README.md CHANGED
@@ -8,6 +8,8 @@ It contains no hardcoded values and is completely stateless — storage is entir
8
8
 
9
9
  ## Installation
10
10
 
11
+ Requires Node.js 20 or higher.
12
+
11
13
  ```bash
12
14
  npm install elo-mmr-kit
13
15
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "elo-mmr-kit",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Zero-dependency, fully configurable Elo/MMR rating and matchmaking toolkit for games",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -35,7 +35,7 @@
35
35
  "license": "MIT",
36
36
  "sideEffects": false,
37
37
  "engines": {
38
- "node": ">=18"
38
+ "node": ">=20"
39
39
  },
40
40
  "devDependencies": {
41
41
  "@eslint/js": "^9.7.0",
@@ -46,6 +46,9 @@
46
46
  "tsup": "^8.2.3",
47
47
  "typescript": "^5.5.3",
48
48
  "typescript-eslint": "^8.0.0",
49
- "vitest": "^2.0.3"
49
+ "vitest": "^4.1.10"
50
+ },
51
+ "overrides": {
52
+ "esbuild": "0.28.1"
50
53
  }
51
54
  }