pokenode-ts 2.2.0 → 2.3.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.
@@ -3,12 +3,12 @@
3
3
  * |_) _ | _ _ _ _| _ __ _|_ _
4
4
  * | (_) |< (/_ | | (_) (_| (/_ |_ _>
5
5
  *
6
- * pokenode-ts v2.2.0 — A typed PokéAPI client with zero runtime dependencies.
6
+ * pokenode-ts v2.3.1 — A typed PokéAPI client with zero runtime dependencies.
7
7
  *
8
8
  * Docs: https://pokenode-ts.vercel.app/
9
9
  * Author: Gabb-c <https://github.com/Gabb-c>
10
10
  * License: MIT
11
- * Built: 2026-08-21
11
+ * Built: 2026-09-04
12
12
  *
13
13
  * @license MIT
14
14
  * @preserve
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pokenode-ts",
3
- "version": "2.2.0",
3
+ "version": "2.3.1",
4
4
  "private": false,
5
5
  "description": "A typed PokéAPI client with zero runtime dependencies.",
6
6
  "keywords": [
@@ -44,7 +44,7 @@
44
44
  "lib"
45
45
  ],
46
46
  "types": "lib/index.d.ts",
47
- "packageManager": "pnpm@11.22.0",
47
+ "packageManager": "pnpm@11.25.0",
48
48
  "scripts": {
49
49
  "build": "tsdown",
50
50
  "docs:build": "vitepress build docs",
@@ -56,7 +56,6 @@
56
56
  "typecheck": "tsc --noEmit && tsc --noEmit -p tests && tsc --noEmit -p docs/.vitepress",
57
57
  "prepare": "lefthook install",
58
58
  "prepublishOnly": "pnpm build",
59
- "size": "size-limit",
60
59
  "test": "vitest --project unit",
61
60
  "test:run": "vitest run --project unit",
62
61
  "test:live": "vitest run --project live",
@@ -65,39 +64,23 @@
65
64
  },
66
65
  "devDependencies": {
67
66
  "@arethetypeswrong/core": "^0.18.5",
68
- "@biomejs/biome": "^2.5.8",
67
+ "@biomejs/biome": "^2.5.12",
69
68
  "@commitlint/cli": "^21.2.2",
70
69
  "@commitlint/config-conventional": "^21.2.2",
71
- "@size-limit/preset-small-lib": "^13.0.3",
72
- "@types/node": "^26.2.0",
73
- "@vitest/coverage-v8": "^4.1.10",
74
- "@vitest/ui": "^4.1.10",
75
- "lefthook": "^2.1.10",
70
+ "@types/node": "^26.4.1",
71
+ "@vitest/coverage-v8": "^5.0.0",
72
+ "@vitest/ui": "^5.0.0",
73
+ "lefthook": "^2.1.12",
76
74
  "msw": "^2.15.0",
77
- "publint": "^0.3.23",
78
- "size-limit": "^13.0.3",
75
+ "publint": "^0.3.24",
79
76
  "tsdown": "^0.22.14",
80
77
  "typescript": "^7.0.2",
81
- "vite": "^8.2.1",
78
+ "vite": "^8.2.2",
82
79
  "vitepress": "1.6.4",
83
- "vitest": "^4.1.10",
84
- "vue": "^3.5.41"
80
+ "vitest": "^5.0.0",
81
+ "vue": "^3.5.42"
85
82
  },
86
83
  "engines": {
87
84
  "node": ">=22"
88
- },
89
- "size-limit": [
90
- {
91
- "name": "ESM",
92
- "path": "lib/index.js",
93
- "limit": "11.5 kB",
94
- "gzip": true
95
- },
96
- {
97
- "name": "CJS",
98
- "path": "lib/index.cjs",
99
- "limit": "12 kB",
100
- "gzip": true
101
- }
102
- ]
85
+ }
103
86
  }