@affectively/aeon 1.3.0 → 1.3.1
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/LICENSE +21 -21
- package/README.md +342 -342
- package/dist/compression/index.cjs.map +1 -1
- package/dist/compression/index.js.map +1 -1
- package/dist/core/index.d.cts +213 -213
- package/dist/core/index.d.ts +213 -213
- package/dist/crypto/index.cjs.map +1 -1
- package/dist/crypto/index.d.cts +441 -441
- package/dist/crypto/index.d.ts +441 -441
- package/dist/crypto/index.js.map +1 -1
- package/dist/distributed/index.cjs.map +1 -1
- package/dist/distributed/index.d.cts +1005 -1005
- package/dist/distributed/index.d.ts +1005 -1005
- package/dist/distributed/index.js.map +1 -1
- package/dist/index.cjs +32 -723
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +50 -5
- package/dist/index.d.ts +50 -5
- package/dist/index.js +29 -722
- package/dist/index.js.map +1 -1
- package/dist/offline/index.cjs.map +1 -1
- package/dist/offline/index.d.cts +148 -148
- package/dist/offline/index.d.ts +148 -148
- package/dist/offline/index.js.map +1 -1
- package/dist/optimization/index.cjs.map +1 -1
- package/dist/optimization/index.js.map +1 -1
- package/dist/persistence/index.cjs.map +1 -1
- package/dist/persistence/index.d.cts +57 -57
- package/dist/persistence/index.d.ts +57 -57
- package/dist/persistence/index.js.map +1 -1
- package/dist/presence/index.cjs.map +1 -1
- package/dist/presence/index.js.map +1 -1
- package/dist/{types-B7gCpNX9.d.cts → types-B7CxsoLh.d.cts} +30 -30
- package/dist/{types-B7gCpNX9.d.ts → types-B7CxsoLh.d.ts} +30 -30
- package/dist/utils/index.cjs.map +1 -1
- package/dist/utils/index.d.cts +35 -35
- package/dist/utils/index.d.ts +35 -35
- package/dist/utils/index.js.map +1 -1
- package/dist/versioning/index.cjs.map +1 -1
- package/dist/versioning/index.d.cts +1 -1
- package/dist/versioning/index.d.ts +1 -1
- package/dist/versioning/index.js.map +1 -1
- package/package.json +196 -196
package/package.json
CHANGED
|
@@ -1,196 +1,196 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@affectively/aeon",
|
|
3
|
-
"version": "1.3.
|
|
4
|
-
"description": "Distributed synchronization, schema versioning, and conflict resolution for real-time collaborative applications",
|
|
5
|
-
"keywords": [
|
|
6
|
-
"distributed",
|
|
7
|
-
"synchronization",
|
|
8
|
-
"sync",
|
|
9
|
-
"replication",
|
|
10
|
-
"versioning",
|
|
11
|
-
"migration",
|
|
12
|
-
"schema",
|
|
13
|
-
"crdt",
|
|
14
|
-
"collaboration",
|
|
15
|
-
"real-time",
|
|
16
|
-
"conflict-resolution",
|
|
17
|
-
"offline-first"
|
|
18
|
-
],
|
|
19
|
-
"author": "Affectively AI",
|
|
20
|
-
"license": "MIT",
|
|
21
|
-
"homepage": "https://github.com/affectively-ai/aeon#readme",
|
|
22
|
-
"repository": {
|
|
23
|
-
"type": "git",
|
|
24
|
-
"url": "git+https://github.com/affectively-ai/aeon.git"
|
|
25
|
-
},
|
|
26
|
-
"bugs": {
|
|
27
|
-
"url": "https://github.com/affectively-ai/aeon/issues"
|
|
28
|
-
},
|
|
29
|
-
"type": "module",
|
|
30
|
-
"main": "./dist/index.cjs",
|
|
31
|
-
"module": "./dist/index.js",
|
|
32
|
-
"types": "./dist/index.d.ts",
|
|
33
|
-
"exports": {
|
|
34
|
-
".": {
|
|
35
|
-
"import": {
|
|
36
|
-
"types": "./dist/index.d.ts",
|
|
37
|
-
"default": "./dist/index.js"
|
|
38
|
-
},
|
|
39
|
-
"require": {
|
|
40
|
-
"types": "./dist/index.d.cts",
|
|
41
|
-
"default": "./dist/index.cjs"
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"./core": {
|
|
45
|
-
"import": {
|
|
46
|
-
"types": "./dist/core/index.d.ts",
|
|
47
|
-
"default": "./dist/core/index.js"
|
|
48
|
-
},
|
|
49
|
-
"require": {
|
|
50
|
-
"types": "./dist/core/index.d.cts",
|
|
51
|
-
"default": "./dist/core/index.cjs"
|
|
52
|
-
}
|
|
53
|
-
},
|
|
54
|
-
"./offline": {
|
|
55
|
-
"import": {
|
|
56
|
-
"types": "./dist/offline/index.d.ts",
|
|
57
|
-
"default": "./dist/offline/index.js"
|
|
58
|
-
},
|
|
59
|
-
"require": {
|
|
60
|
-
"types": "./dist/offline/index.d.cts",
|
|
61
|
-
"default": "./dist/offline/index.cjs"
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
"./compression": {
|
|
65
|
-
"import": {
|
|
66
|
-
"types": "./dist/compression/index.d.ts",
|
|
67
|
-
"default": "./dist/compression/index.js"
|
|
68
|
-
},
|
|
69
|
-
"require": {
|
|
70
|
-
"types": "./dist/compression/index.d.cts",
|
|
71
|
-
"default": "./dist/compression/index.cjs"
|
|
72
|
-
}
|
|
73
|
-
},
|
|
74
|
-
"./optimization": {
|
|
75
|
-
"import": {
|
|
76
|
-
"types": "./dist/optimization/index.d.ts",
|
|
77
|
-
"default": "./dist/optimization/index.js"
|
|
78
|
-
},
|
|
79
|
-
"require": {
|
|
80
|
-
"types": "./dist/optimization/index.d.cts",
|
|
81
|
-
"default": "./dist/optimization/index.cjs"
|
|
82
|
-
}
|
|
83
|
-
},
|
|
84
|
-
"./presence": {
|
|
85
|
-
"import": {
|
|
86
|
-
"types": "./dist/presence/index.d.ts",
|
|
87
|
-
"default": "./dist/presence/index.js"
|
|
88
|
-
},
|
|
89
|
-
"require": {
|
|
90
|
-
"types": "./dist/presence/index.d.cts",
|
|
91
|
-
"default": "./dist/presence/index.cjs"
|
|
92
|
-
}
|
|
93
|
-
},
|
|
94
|
-
"./versioning": {
|
|
95
|
-
"import": {
|
|
96
|
-
"types": "./dist/versioning/index.d.ts",
|
|
97
|
-
"default": "./dist/versioning/index.js"
|
|
98
|
-
},
|
|
99
|
-
"require": {
|
|
100
|
-
"types": "./dist/versioning/index.d.cts",
|
|
101
|
-
"default": "./dist/versioning/index.cjs"
|
|
102
|
-
}
|
|
103
|
-
},
|
|
104
|
-
"./distributed": {
|
|
105
|
-
"import": {
|
|
106
|
-
"types": "./dist/distributed/index.d.ts",
|
|
107
|
-
"default": "./dist/distributed/index.js"
|
|
108
|
-
},
|
|
109
|
-
"require": {
|
|
110
|
-
"types": "./dist/distributed/index.d.cts",
|
|
111
|
-
"default": "./dist/distributed/index.cjs"
|
|
112
|
-
}
|
|
113
|
-
},
|
|
114
|
-
"./utils": {
|
|
115
|
-
"import": {
|
|
116
|
-
"types": "./dist/utils/index.d.ts",
|
|
117
|
-
"default": "./dist/utils/index.js"
|
|
118
|
-
},
|
|
119
|
-
"require": {
|
|
120
|
-
"types": "./dist/utils/index.d.cts",
|
|
121
|
-
"default": "./dist/utils/index.cjs"
|
|
122
|
-
}
|
|
123
|
-
},
|
|
124
|
-
"./crypto": {
|
|
125
|
-
"import": {
|
|
126
|
-
"types": "./dist/crypto/index.d.ts",
|
|
127
|
-
"default": "./dist/crypto/index.js"
|
|
128
|
-
},
|
|
129
|
-
"require": {
|
|
130
|
-
"types": "./dist/crypto/index.d.cts",
|
|
131
|
-
"default": "./dist/crypto/index.cjs"
|
|
132
|
-
}
|
|
133
|
-
},
|
|
134
|
-
"./persistence": {
|
|
135
|
-
"import": {
|
|
136
|
-
"types": "./dist/persistence/index.d.ts",
|
|
137
|
-
"default": "./dist/persistence/index.js"
|
|
138
|
-
},
|
|
139
|
-
"require": {
|
|
140
|
-
"types": "./dist/persistence/index.d.cts",
|
|
141
|
-
"default": "./dist/persistence/index.cjs"
|
|
142
|
-
}
|
|
143
|
-
}
|
|
144
|
-
},
|
|
145
|
-
"files": [
|
|
146
|
-
"dist",
|
|
147
|
-
"README.md",
|
|
148
|
-
"LICENSE"
|
|
149
|
-
],
|
|
150
|
-
"scripts": {
|
|
151
|
-
"build": "tsup",
|
|
152
|
-
"dev": "tsup --watch",
|
|
153
|
-
"test": "vitest run",
|
|
154
|
-
"test:watch": "vitest",
|
|
155
|
-
"test:coverage": "vitest run --coverage",
|
|
156
|
-
"lint": "eslint src --ext .ts",
|
|
157
|
-
"lint:fix": "eslint src --ext .ts --fix",
|
|
158
|
-
"format": "prettier --write src",
|
|
159
|
-
"type-check": "tsc --noEmit",
|
|
160
|
-
"clean": "rm -rf dist",
|
|
161
|
-
"prepublishOnly": "npm run build"
|
|
162
|
-
},
|
|
163
|
-
"dependencies": {
|
|
164
|
-
"eventemitter3": "^5.0.4"
|
|
165
|
-
},
|
|
166
|
-
"peerDependencies": {
|
|
167
|
-
"@affectively/auth": "^1.0.0",
|
|
168
|
-
"@affectively/zk-encryption": "^1.0.0",
|
|
169
|
-
"@affectively/aeon-
|
|
170
|
-
},
|
|
171
|
-
"peerDependenciesMeta": {
|
|
172
|
-
"@affectively/auth": {
|
|
173
|
-
"optional": true
|
|
174
|
-
},
|
|
175
|
-
"@affectively/zk-encryption": {
|
|
176
|
-
"optional": true
|
|
177
|
-
},
|
|
178
|
-
"@affectively/aeon-
|
|
179
|
-
"optional": true
|
|
180
|
-
}
|
|
181
|
-
},
|
|
182
|
-
"devDependencies": {
|
|
183
|
-
"@types/node": "^22.0.0",
|
|
184
|
-
"eslint": "^9.0.0",
|
|
185
|
-
"prettier": "^3.0.0",
|
|
186
|
-
"tsup": "^8.0.0",
|
|
187
|
-
"typescript": "^5.6.0",
|
|
188
|
-
"vitest": "^2.0.0"
|
|
189
|
-
},
|
|
190
|
-
"engines": {
|
|
191
|
-
"node": ">=18.0.0"
|
|
192
|
-
},
|
|
193
|
-
"publishConfig": {
|
|
194
|
-
"access": "public"
|
|
195
|
-
}
|
|
196
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@affectively/aeon",
|
|
3
|
+
"version": "1.3.1",
|
|
4
|
+
"description": "Distributed synchronization, schema versioning, and conflict resolution for real-time collaborative applications",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"distributed",
|
|
7
|
+
"synchronization",
|
|
8
|
+
"sync",
|
|
9
|
+
"replication",
|
|
10
|
+
"versioning",
|
|
11
|
+
"migration",
|
|
12
|
+
"schema",
|
|
13
|
+
"crdt",
|
|
14
|
+
"collaboration",
|
|
15
|
+
"real-time",
|
|
16
|
+
"conflict-resolution",
|
|
17
|
+
"offline-first"
|
|
18
|
+
],
|
|
19
|
+
"author": "Affectively AI",
|
|
20
|
+
"license": "MIT",
|
|
21
|
+
"homepage": "https://github.com/affectively-ai/aeon#readme",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/affectively-ai/aeon.git"
|
|
25
|
+
},
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/affectively-ai/aeon/issues"
|
|
28
|
+
},
|
|
29
|
+
"type": "module",
|
|
30
|
+
"main": "./dist/index.cjs",
|
|
31
|
+
"module": "./dist/index.js",
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
"exports": {
|
|
34
|
+
".": {
|
|
35
|
+
"import": {
|
|
36
|
+
"types": "./dist/index.d.ts",
|
|
37
|
+
"default": "./dist/index.js"
|
|
38
|
+
},
|
|
39
|
+
"require": {
|
|
40
|
+
"types": "./dist/index.d.cts",
|
|
41
|
+
"default": "./dist/index.cjs"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"./core": {
|
|
45
|
+
"import": {
|
|
46
|
+
"types": "./dist/core/index.d.ts",
|
|
47
|
+
"default": "./dist/core/index.js"
|
|
48
|
+
},
|
|
49
|
+
"require": {
|
|
50
|
+
"types": "./dist/core/index.d.cts",
|
|
51
|
+
"default": "./dist/core/index.cjs"
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
"./offline": {
|
|
55
|
+
"import": {
|
|
56
|
+
"types": "./dist/offline/index.d.ts",
|
|
57
|
+
"default": "./dist/offline/index.js"
|
|
58
|
+
},
|
|
59
|
+
"require": {
|
|
60
|
+
"types": "./dist/offline/index.d.cts",
|
|
61
|
+
"default": "./dist/offline/index.cjs"
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
"./compression": {
|
|
65
|
+
"import": {
|
|
66
|
+
"types": "./dist/compression/index.d.ts",
|
|
67
|
+
"default": "./dist/compression/index.js"
|
|
68
|
+
},
|
|
69
|
+
"require": {
|
|
70
|
+
"types": "./dist/compression/index.d.cts",
|
|
71
|
+
"default": "./dist/compression/index.cjs"
|
|
72
|
+
}
|
|
73
|
+
},
|
|
74
|
+
"./optimization": {
|
|
75
|
+
"import": {
|
|
76
|
+
"types": "./dist/optimization/index.d.ts",
|
|
77
|
+
"default": "./dist/optimization/index.js"
|
|
78
|
+
},
|
|
79
|
+
"require": {
|
|
80
|
+
"types": "./dist/optimization/index.d.cts",
|
|
81
|
+
"default": "./dist/optimization/index.cjs"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
"./presence": {
|
|
85
|
+
"import": {
|
|
86
|
+
"types": "./dist/presence/index.d.ts",
|
|
87
|
+
"default": "./dist/presence/index.js"
|
|
88
|
+
},
|
|
89
|
+
"require": {
|
|
90
|
+
"types": "./dist/presence/index.d.cts",
|
|
91
|
+
"default": "./dist/presence/index.cjs"
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
"./versioning": {
|
|
95
|
+
"import": {
|
|
96
|
+
"types": "./dist/versioning/index.d.ts",
|
|
97
|
+
"default": "./dist/versioning/index.js"
|
|
98
|
+
},
|
|
99
|
+
"require": {
|
|
100
|
+
"types": "./dist/versioning/index.d.cts",
|
|
101
|
+
"default": "./dist/versioning/index.cjs"
|
|
102
|
+
}
|
|
103
|
+
},
|
|
104
|
+
"./distributed": {
|
|
105
|
+
"import": {
|
|
106
|
+
"types": "./dist/distributed/index.d.ts",
|
|
107
|
+
"default": "./dist/distributed/index.js"
|
|
108
|
+
},
|
|
109
|
+
"require": {
|
|
110
|
+
"types": "./dist/distributed/index.d.cts",
|
|
111
|
+
"default": "./dist/distributed/index.cjs"
|
|
112
|
+
}
|
|
113
|
+
},
|
|
114
|
+
"./utils": {
|
|
115
|
+
"import": {
|
|
116
|
+
"types": "./dist/utils/index.d.ts",
|
|
117
|
+
"default": "./dist/utils/index.js"
|
|
118
|
+
},
|
|
119
|
+
"require": {
|
|
120
|
+
"types": "./dist/utils/index.d.cts",
|
|
121
|
+
"default": "./dist/utils/index.cjs"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"./crypto": {
|
|
125
|
+
"import": {
|
|
126
|
+
"types": "./dist/crypto/index.d.ts",
|
|
127
|
+
"default": "./dist/crypto/index.js"
|
|
128
|
+
},
|
|
129
|
+
"require": {
|
|
130
|
+
"types": "./dist/crypto/index.d.cts",
|
|
131
|
+
"default": "./dist/crypto/index.cjs"
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
"./persistence": {
|
|
135
|
+
"import": {
|
|
136
|
+
"types": "./dist/persistence/index.d.ts",
|
|
137
|
+
"default": "./dist/persistence/index.js"
|
|
138
|
+
},
|
|
139
|
+
"require": {
|
|
140
|
+
"types": "./dist/persistence/index.d.cts",
|
|
141
|
+
"default": "./dist/persistence/index.cjs"
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
},
|
|
145
|
+
"files": [
|
|
146
|
+
"dist",
|
|
147
|
+
"README.md",
|
|
148
|
+
"LICENSE"
|
|
149
|
+
],
|
|
150
|
+
"scripts": {
|
|
151
|
+
"build": "tsup",
|
|
152
|
+
"dev": "tsup --watch",
|
|
153
|
+
"test": "vitest run",
|
|
154
|
+
"test:watch": "vitest",
|
|
155
|
+
"test:coverage": "vitest run --coverage",
|
|
156
|
+
"lint": "eslint src --ext .ts",
|
|
157
|
+
"lint:fix": "eslint src --ext .ts --fix",
|
|
158
|
+
"format": "prettier --write src",
|
|
159
|
+
"type-check": "tsc --noEmit",
|
|
160
|
+
"clean": "rm -rf dist",
|
|
161
|
+
"prepublishOnly": "npm run build"
|
|
162
|
+
},
|
|
163
|
+
"dependencies": {
|
|
164
|
+
"eventemitter3": "^5.0.4"
|
|
165
|
+
},
|
|
166
|
+
"peerDependencies": {
|
|
167
|
+
"@affectively/auth": "^1.0.0",
|
|
168
|
+
"@affectively/zk-encryption": "^1.0.0",
|
|
169
|
+
"@affectively/aeon-flux-react": "^1.0.0"
|
|
170
|
+
},
|
|
171
|
+
"peerDependenciesMeta": {
|
|
172
|
+
"@affectively/auth": {
|
|
173
|
+
"optional": true
|
|
174
|
+
},
|
|
175
|
+
"@affectively/zk-encryption": {
|
|
176
|
+
"optional": true
|
|
177
|
+
},
|
|
178
|
+
"@affectively/aeon-flux-react": {
|
|
179
|
+
"optional": true
|
|
180
|
+
}
|
|
181
|
+
},
|
|
182
|
+
"devDependencies": {
|
|
183
|
+
"@types/node": "^22.0.0",
|
|
184
|
+
"eslint": "^9.0.0",
|
|
185
|
+
"prettier": "^3.0.0",
|
|
186
|
+
"tsup": "^8.0.0",
|
|
187
|
+
"typescript": "^5.6.0",
|
|
188
|
+
"vitest": "^2.0.0"
|
|
189
|
+
},
|
|
190
|
+
"engines": {
|
|
191
|
+
"node": ">=18.0.0"
|
|
192
|
+
},
|
|
193
|
+
"publishConfig": {
|
|
194
|
+
"access": "public"
|
|
195
|
+
}
|
|
196
|
+
}
|