memorio 3.0.2 → 4.1.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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "memorio",
3
- "code": "memorio",
4
- "version": "3.0.2",
3
+ "codeName": "memorio",
4
+ "version": "4.1.0",
5
5
  "description": "Memorio, State + Observer, Store and iDB for an easy life - Cross-platform compatible",
6
6
  "main": "./index.cjs",
7
7
  "browser": "./index.cjs",
@@ -22,6 +22,7 @@
22
22
  }
23
23
  ],
24
24
  "keywords": [
25
+ "memorio",
25
26
  "state",
26
27
  "observer",
27
28
  "store",
@@ -43,6 +44,9 @@
43
44
  "url": "https://www.patreon.com/passariello"
44
45
  }
45
46
  ],
47
+ "workspaces": [
48
+ "tests"
49
+ ],
46
50
  "engines": {
47
51
  "node": ">=18.0.0"
48
52
  },
@@ -62,6 +66,20 @@
62
66
  "optional": true
63
67
  }
64
68
  },
69
+ "overrides": {
70
+ "es-define-property": "npm:@socketregistry/es-define-property@^1",
71
+ "es-set-tostringtag": "npm:@socketregistry/es-set-tostringtag@^1",
72
+ "function-bind": "npm:@socketregistry/function-bind@^1",
73
+ "gopd": "npm:@socketregistry/gopd@^1",
74
+ "has-symbols": "npm:@socketregistry/has-symbols@^1",
75
+ "has-tostringtag": "npm:@socketregistry/has-tostringtag@^1",
76
+ "hasown": "npm:@socketregistry/hasown@^1",
77
+ "indent-string": "npm:@socketregistry/indent-string@^1",
78
+ "object-assign": "npm:@socketregistry/object-assign@^1",
79
+ "safe-buffer": "npm:@socketregistry/safe-buffer@^1",
80
+ "safer-buffer": "npm:@socketregistry/safer-buffer@^1",
81
+ "side-channel": "npm:@socketregistry/side-channel@^1"
82
+ },
65
83
  "exports": {
66
84
  ".": {
67
85
  "import": "./index.js",
@@ -6,6 +6,7 @@ interface _dispatch {
6
6
  }
7
7
 
8
8
  interface _memorio {
9
+ message: (props: string) => void
9
10
  setProps: (props: Record<string, unknown>) => void
10
11
  obj: Record<string, unknown>
11
12
  array: unknown[]