swr-catalyst 0.2.0 → 0.2.2

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 +0 -1
  2. package/package.json +13 -10
package/README.md CHANGED
@@ -11,7 +11,6 @@
11
11
  [![npm downloads](https://img.shields.io/npm/dm/swr-catalyst)](https://www.npmjs.com/package/swr-catalyst)
12
12
  [![CI](https://github.com/pedroab0/swr-catalyst/actions/workflows/ci.yml/badge.svg)](https://github.com/pedroab0/swr-catalyst/actions/workflows/ci.yml)
13
13
  [![codecov](https://codecov.io/github/pedroab0/swr-catalyst/graph/badge.svg?token=IL8XFDVYHU)](https://codecov.io/github/pedroab0/swr-catalyst)
14
- [![CodeScene Average Code Health](https://codescene.io/projects/73545/status-badges/average-code-health)](https://codescene.io/projects/73545)
15
14
 
16
15
  [Features](#features) • [Installation](#installation) • [Quick Start](#quick-start) • [API Reference](#api-reference)
17
16
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "swr-catalyst",
3
- "version": "0.2.0",
3
+ "version": "0.2.2",
4
4
  "description": "A lightweight, declarative library to simplify data mutations with SWR.",
5
5
  "author": "Pedro Barbosa (https://github.com/pedroab0)",
6
6
  "license": "MIT",
@@ -40,25 +40,28 @@
40
40
  "size": "size-limit",
41
41
  "prepublishOnly": "npm run build"
42
42
  },
43
+ "engines": {
44
+ "node": ">=20.0.0"
45
+ },
43
46
  "peerDependencies": {
44
47
  "react": "^18.0.0 || ^19.0.0",
45
48
  "swr": "^2.0.0"
46
49
  },
47
50
  "devDependencies": {
48
- "@biomejs/biome": "^2.3.0",
49
- "@size-limit/preset-small-lib": "^11.1.6",
51
+ "@biomejs/biome": "^2.3.4",
52
+ "@size-limit/preset-small-lib": "^11.2.0",
50
53
  "@testing-library/react": "^16.3.0",
51
- "@types/node": "^24.9.1",
52
- "@vitest/coverage-v8": "^4.0.1",
53
- "jsdom": "^27.0.1",
54
+ "@types/node": "^24.10.0",
55
+ "@vitest/coverage-v8": "^4.0.7",
56
+ "jsdom": "^27.1.0",
54
57
  "react": "^19.2.0",
55
58
  "react-dom": "^19.2.0",
56
- "size-limit": "^11.1.6",
59
+ "size-limit": "^11.2.0",
57
60
  "swr": "^2.3.6",
58
61
  "typescript": "^5.9.3",
59
- "ultracite": "^6.0.1",
60
- "vite": "^7.1.12",
62
+ "ultracite": "^6.3.2",
63
+ "vite": "^7.2.1",
61
64
  "vite-plugin-dts": "^4.5.4",
62
- "vitest": "^4.0.1"
65
+ "vitest": "^4.0.7"
63
66
  }
64
67
  }