@dvashim/store 1.5.3 → 1.5.4

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 -1
  2. package/package.json +12 -6
package/README.md CHANGED
@@ -18,7 +18,7 @@ or pnpm:
18
18
  pnpm add @dvashim/store
19
19
  ```
20
20
 
21
- **Peer dependencies:** `react >= 18`
21
+ **Peer dependencies:** `react` and `react-dom` ^18.0.0 || ^19.0.0
22
22
 
23
23
  ## Quick Start
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dvashim/store",
3
- "version": "1.5.3",
3
+ "version": "1.5.4",
4
4
  "description": "Yet another state management in React",
5
5
  "keywords": [
6
6
  "lightweight",
@@ -11,9 +11,13 @@
11
11
  "typescript",
12
12
  "useSyncExternalStore"
13
13
  ],
14
+ "homepage": "https://github.com/dvashim/store#readme",
15
+ "bugs": {
16
+ "url": "https://github.com/dvashim/store/issues"
17
+ },
14
18
  "repository": {
15
19
  "type": "git",
16
- "url": "https://github.com/dvashim/store.git"
20
+ "url": "git+https://github.com/dvashim/store.git"
17
21
  },
18
22
  "license": "MIT",
19
23
  "author": {
@@ -36,8 +40,8 @@
36
40
  "@biomejs/biome": "^2.4.9",
37
41
  "@changesets/changelog-github": "^0.6.0",
38
42
  "@changesets/cli": "^2.30.0",
39
- "@dvashim/biome-config": "^1.5.1",
40
- "@dvashim/typescript-config": "^2.0.1",
43
+ "@dvashim/biome-config": "^1.5.7",
44
+ "@dvashim/typescript-config": "^2.0.4",
41
45
  "@testing-library/react": "^16.3.2",
42
46
  "@types/node": "^25.5.0",
43
47
  "@types/react": "^19.2.14",
@@ -54,9 +58,11 @@
54
58
  "react": "^18.0.0 || ^19.0.0",
55
59
  "react-dom": "^18.0.0 || ^19.0.0"
56
60
  },
61
+ "engines": {
62
+ "node": ">=18"
63
+ },
57
64
  "publishConfig": {
58
- "access": "public",
59
- "provenance": true
65
+ "access": "public"
60
66
  },
61
67
  "scripts": {
62
68
  "build": "tsc --project tsconfig.dev.json",