@t8/react-store 1.0.20 → 1.0.22

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 +50 -50
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # @t8/react-store
4
4
 
5
- *Straightforward and minimalist shared state management for React apps*
5
+ *Concise shared state management for React apps*
6
6
 
7
7
  - Similar to `useState()`
8
8
  - No boilerplate
package/package.json CHANGED
@@ -1,50 +1,50 @@
1
- {
2
- "name": "@t8/react-store",
3
- "version": "1.0.20",
4
- "description": "Straightforward and minimalist shared state management for React apps",
5
- "main": "dist/index.js",
6
- "type": "module",
7
- "scripts": {
8
- "build": "npx npm-run-all clean compile",
9
- "clean": "node -e \"require('node:fs').rmSync('dist', {force: true, recursive: true});\"",
10
- "compile": "npx esbuild index.ts --bundle --outdir=dist --platform=neutral --external:react",
11
- "demo": "npx @t8/serve 3000 * tests/counter -b src/index.tsx",
12
- "gh-pages": "npx ghstage --theme=t8 --ymid=103784239 --nav=https://raw.githubusercontent.com/t8js/t8js.github.io/refs/heads/main/assets/nav.html --single-page",
13
- "prepublishOnly": "npx npm-run-all build gh-pages",
14
- "preversion": "npx npm-run-all typecheck shape build test",
15
- "shape": "npx codeshape",
16
- "test": "npx playwright test --project=chromium",
17
- "tic-tac-toe": "npx @t8/serve 3000 * tests/tic-tac-toe -b src/index.tsx",
18
- "typecheck": "tsc --noEmit"
19
- },
20
- "repository": {
21
- "type": "git",
22
- "url": "git+https://github.com/t8js/react-store.git"
23
- },
24
- "homepage": "https://t8.js.org/react-store",
25
- "keywords": [
26
- "react",
27
- "state management",
28
- "shared state",
29
- "global state",
30
- "store"
31
- ],
32
- "author": "axtk",
33
- "license": "ISC",
34
- "peerDependencies": {
35
- "react": ">=16.8"
36
- },
37
- "devDependencies": {
38
- "@playwright/test": "^1.55.1",
39
- "@t8/serve": "^0.1.19",
40
- "@types/node": "^24.5.2",
41
- "@types/react": "^19.1.10",
42
- "@types/react-dom": "^19.1.9",
43
- "immer": "^10.1.3",
44
- "react-dom": "^19.1.1",
45
- "typescript": "^5.9.2"
46
- },
47
- "dependencies": {
48
- "@t8/store": "^1.1.3"
49
- }
50
- }
1
+ {
2
+ "name": "@t8/react-store",
3
+ "version": "1.0.22",
4
+ "description": "Concise shared state management for React apps",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "scripts": {
8
+ "build": "npx npm-run-all clean compile",
9
+ "clean": "node -e \"require('node:fs').rmSync('dist', { force: true, recursive: true });\"",
10
+ "compile": "npx esbuild index.ts --bundle --outdir=dist --platform=neutral --external:react",
11
+ "demo": "npx @t8/serve 3000 * tests/counter -b src/index.tsx",
12
+ "gh-pages": "npx ghstage --theme=t8 --ymid=103784239 --nav=https://raw.githubusercontent.com/t8js/t8js.github.io/refs/heads/main/assets/nav_react.html --single-page",
13
+ "prepublishOnly": "npx npm-run-all build gh-pages",
14
+ "preversion": "npx npm-run-all typecheck shape build test",
15
+ "shape": "npx codeshape",
16
+ "test": "npx playwright test --project=chromium",
17
+ "tic-tac-toe": "npx @t8/serve 3000 * tests/tic-tac-toe -b src/index.tsx",
18
+ "typecheck": "tsc --noEmit"
19
+ },
20
+ "repository": {
21
+ "type": "git",
22
+ "url": "git+https://github.com/t8js/react-store.git"
23
+ },
24
+ "homepage": "https://t8.js.org/react-store",
25
+ "keywords": [
26
+ "react",
27
+ "state management",
28
+ "shared state",
29
+ "global state",
30
+ "store"
31
+ ],
32
+ "author": "axtk",
33
+ "license": "ISC",
34
+ "peerDependencies": {
35
+ "react": ">=16.8"
36
+ },
37
+ "devDependencies": {
38
+ "@playwright/test": "^1.55.1",
39
+ "@t8/serve": "^0.1.19",
40
+ "@types/node": "^24.5.2",
41
+ "@types/react": "^19.1.10",
42
+ "@types/react-dom": "^19.1.9",
43
+ "immer": "^10.1.3",
44
+ "react-dom": "^19.1.1",
45
+ "typescript": "^5.9.2"
46
+ },
47
+ "dependencies": {
48
+ "@t8/store": "^1.1.3"
49
+ }
50
+ }