atom.io 0.33.0 → 0.33.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "atom.io",
3
- "version": "0.33.0",
3
+ "version": "0.33.2",
4
4
  "description": "Composable and testable reactive data library.",
5
5
  "homepage": "https://atom.io.fyi",
6
6
  "sideEffects": false,
@@ -75,9 +75,9 @@
75
75
  "@vitest/coverage-v8": "3.1.2",
76
76
  "@vitest/ui": "3.1.2",
77
77
  "concurrently": "9.1.2",
78
- "drizzle-kit": "0.31.0",
78
+ "drizzle-kit": "0.31.1",
79
79
  "drizzle-orm": "0.43.1",
80
- "eslint": "9.25.1",
80
+ "eslint": "9.26.0",
81
81
  "happy-dom": "17.4.6",
82
82
  "http-proxy": "1.18.1",
83
83
  "motion": "12.9.4",
@@ -101,6 +101,7 @@
101
101
  "zod": "3.24.3",
102
102
  "break-check": "0.6.13"
103
103
  },
104
+ "main": "./dist/main/index.js",
104
105
  "files": [
105
106
  "dist",
106
107
  "src",
@@ -267,7 +267,7 @@ declare global {
267
267
  var ATOM_IO_IMPLICIT_STORE: Store | undefined
268
268
  }
269
269
 
270
- export const IMPLICIT = {
270
+ export const IMPLICIT: { readonly STORE: Store } = {
271
271
  get STORE(): Store {
272
272
  globalThis.ATOM_IO_IMPLICIT_STORE ??= new Store({
273
273
  name: `IMPLICIT_STORE`,