@but212/atom-effect 0.7.0 → 0.8.0

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 +7 -7
  2. package/package.json +7 -9
package/README.md CHANGED
@@ -158,13 +158,13 @@ Type guards (`isAtom`, `isComputed`, `isEffect`), configuration constants (`DEBU
158
158
 
159
159
  | Operation | Performance |
160
160
  | --- | --- |
161
- | Atom creation | ~5.12M ops/sec |
162
- | Atom read/write | ~4.44M ops/sec |
163
- | Computed creation | ~1.76M ops/sec |
164
- | Computed recomputation | ~470K ops/sec |
165
- | Effect execution | ~427K ops/sec |
166
- | Batch update (2 atoms) | ~1.92M ops/sec |
167
- | Untracked read | ~3.16M ops/sec |
161
+ | Atom creation | ~5.04M ops/sec |
162
+ | Atom read/write | ~4.57M ops/sec |
163
+ | Computed creation | ~1.75M ops/sec |
164
+ | Computed recomputation | ~467K ops/sec |
165
+ | Effect execution | ~394K ops/sec |
166
+ | Batch update (2 atoms) | ~1.77M ops/sec |
167
+ | Untracked read | ~3.20M ops/sec |
168
168
  | Deep chain (100 levels) | ~8.2K ops/sec |
169
169
 
170
170
  See [docs/BENCHMARKS.md](./docs/BENCHMARKS.md) for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@but212/atom-effect",
3
- "version": "0.7.0",
3
+ "version": "0.8.0",
4
4
  "type": "module",
5
5
  "description": "A reactive state management library that combines the power of `atom`, `computed`, and `effect` for seamless management of reactive state.",
6
6
  "main": "./dist/index.cjs",
@@ -35,23 +35,21 @@
35
35
  },
36
36
  "repository": {
37
37
  "type": "git",
38
- "url": "git+https://github.com/but212/atom-effect.git"
38
+ "url": "git+https://github.com/but212/atom-effect.git",
39
+ "directory": "packages/core"
39
40
  },
40
41
  "devDependencies": {
41
- "@biomejs/biome": "^2.3.11",
42
42
  "@types/jsdom": "^27.0.0",
43
43
  "@types/node": "^24.10.4",
44
- "@vitest/coverage-v8": "^3.2.4",
45
- "@vitest/ui": "^3.2.4",
44
+ "@vitest/coverage-v8": "^4.0.17",
45
+ "@vitest/ui": "^4.0.17",
46
46
  "happy-dom": "^20.0.11",
47
47
  "jsdom": "^27.4.0",
48
48
  "tinybench": "^5.1.0",
49
- "tsx": "^4.21.0",
50
- "typescript": "^5.9.3",
51
- "vite": "^7.3.0",
49
+ "vite": "^7.3.1",
52
50
  "vite-plugin-dts": "^4.5.4",
53
51
  "vite-tsconfig-paths": "^6.0.3",
54
- "vitest": "^3.2.4"
52
+ "vitest": "^4.0.17"
55
53
  },
56
54
  "scripts": {
57
55
  "build": "vite build",