semantic-state-estimator 2.0.0-beta.0 → 2.0.0-beta.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/package.json +22 -5
- package/dist/embedding.worker.bundle.js +0 -46184
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "semantic-state-estimator",
|
|
3
|
-
"version": "2.0.0-beta.
|
|
3
|
+
"version": "2.0.0-beta.1",
|
|
4
4
|
"description": "A TypeScript library that tracks the implicit semantic intent, emotional state, or 'vibe' of a user/system using local text embeddings and EMA fusion.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -24,7 +24,27 @@
|
|
|
24
24
|
}
|
|
25
25
|
},
|
|
26
26
|
"files": [
|
|
27
|
-
"dist",
|
|
27
|
+
"dist/index.js",
|
|
28
|
+
"dist/index.js.map",
|
|
29
|
+
"dist/index.cjs",
|
|
30
|
+
"dist/index.cjs.map",
|
|
31
|
+
"dist/index.d.ts",
|
|
32
|
+
"dist/index.d.cts",
|
|
33
|
+
"dist/zustand.js",
|
|
34
|
+
"dist/zustand.js.map",
|
|
35
|
+
"dist/zustand.cjs",
|
|
36
|
+
"dist/zustand.cjs.map",
|
|
37
|
+
"dist/zustand.d.ts",
|
|
38
|
+
"dist/zustand.d.cts",
|
|
39
|
+
"dist/react.js",
|
|
40
|
+
"dist/react.js.map",
|
|
41
|
+
"dist/react.cjs",
|
|
42
|
+
"dist/react.cjs.map",
|
|
43
|
+
"dist/react.d.ts",
|
|
44
|
+
"dist/react.d.cts",
|
|
45
|
+
"dist/SemanticStateEngine-*.d.ts",
|
|
46
|
+
"dist/SemanticStateEngine-*.d.cts",
|
|
47
|
+
"dist/*.node",
|
|
28
48
|
"README.md",
|
|
29
49
|
"LICENSE"
|
|
30
50
|
],
|
|
@@ -47,9 +67,6 @@
|
|
|
47
67
|
"typescript"
|
|
48
68
|
],
|
|
49
69
|
"sideEffects": false,
|
|
50
|
-
"engines": {
|
|
51
|
-
"node": ">=18"
|
|
52
|
-
},
|
|
53
70
|
"author": "Francisco Rueda",
|
|
54
71
|
"license": "MIT",
|
|
55
72
|
"repository": {
|