@thyn-ai/sqai 0.1.4 → 0.1.6
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 +202 -0
- package/NOTICE +8 -0
- package/README.md +13 -0
- package/dist/index.cjs +426 -82
- package/dist/index.d.cts +122 -21
- package/dist/index.d.ts +122 -21
- package/dist/index.js +384 -57
- package/dist/unsafe.cjs +0 -1
- package/dist/unsafe.js +0 -1
- package/package.json +9 -10
- package/dist/index.cjs.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/unsafe.cjs.map +0 -1
- package/dist/unsafe.js.map +0 -1
package/dist/unsafe.cjs
CHANGED
package/dist/unsafe.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thyn-ai/sqai",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"description": "SQAI (Structured Query AI)
|
|
3
|
+
"version": "0.1.6",
|
|
4
|
+
"description": "SQAI (Structured Query AI) — the deterministic, read-only structured-data SDK for AI agents, with full provenance.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"engines": {
|
|
@@ -28,11 +28,6 @@
|
|
|
28
28
|
"LICENSE",
|
|
29
29
|
"NOTICE"
|
|
30
30
|
],
|
|
31
|
-
"scripts": {
|
|
32
|
-
"build": "tsup",
|
|
33
|
-
"test": "vitest run",
|
|
34
|
-
"lint": "tsc --noEmit"
|
|
35
|
-
},
|
|
36
31
|
"dependencies": {
|
|
37
32
|
"algenta-sdk": "1.0.6"
|
|
38
33
|
},
|
|
@@ -54,7 +49,11 @@
|
|
|
54
49
|
"structured-data",
|
|
55
50
|
"deterministic",
|
|
56
51
|
"read-only",
|
|
57
|
-
"algenta",
|
|
58
52
|
"sqai"
|
|
59
|
-
]
|
|
60
|
-
|
|
53
|
+
],
|
|
54
|
+
"scripts": {
|
|
55
|
+
"build": "tsup",
|
|
56
|
+
"test": "vitest run",
|
|
57
|
+
"lint": "tsc --noEmit"
|
|
58
|
+
}
|
|
59
|
+
}
|