vern-llm 2.4.0 → 2.4.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/dist/index.cjs +10 -4923
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +189 -51
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.ts +189 -51
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +10 -4838
- package/dist/index.js.map +1 -1
- package/package.json +14 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "vern-llm",
|
|
3
|
-
"version": "2.4.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.4.2",
|
|
4
|
+
"description": "The LLM call framework. Resilience, observability, and control for every call. Retries, timeouts, provider fallback, rate limiting, circuit breaking and more, dependency-light and typed from the start.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"llm",
|
|
7
7
|
"ai",
|
|
@@ -21,11 +21,17 @@
|
|
|
21
21
|
"main": "./dist/index.cjs",
|
|
22
22
|
"module": "./dist/index.js",
|
|
23
23
|
"types": "./dist/index.d.ts",
|
|
24
|
+
"sideEffects": false,
|
|
24
25
|
"exports": {
|
|
25
26
|
".": {
|
|
26
|
-
"
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
"import": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"default": "./dist/index.js"
|
|
30
|
+
},
|
|
31
|
+
"require": {
|
|
32
|
+
"types": "./dist/index.d.cts",
|
|
33
|
+
"default": "./dist/index.cjs"
|
|
34
|
+
}
|
|
29
35
|
}
|
|
30
36
|
},
|
|
31
37
|
"files": [
|
|
@@ -47,15 +53,17 @@
|
|
|
47
53
|
"@vitest/coverage-v8": "^4.1.10",
|
|
48
54
|
"groq-sdk": "^1.5.0",
|
|
49
55
|
"openai": "^7.4.0",
|
|
56
|
+
"publint": "^0.3.24",
|
|
50
57
|
"size-limit": "^13.0.3",
|
|
51
58
|
"tsdown": "^0.9.9",
|
|
52
59
|
"typescript": "^5.9.3",
|
|
60
|
+
"unplugin-unused": "^0.4.4",
|
|
53
61
|
"vitest": "^4.1.10",
|
|
54
62
|
"zod": "^4.4.3"
|
|
55
63
|
},
|
|
56
64
|
"repository": {
|
|
57
65
|
"type": "git",
|
|
58
|
-
"url": "https://github.com/LakBud/vernLLM",
|
|
66
|
+
"url": "git+https://github.com/LakBud/vernLLM.git",
|
|
59
67
|
"directory": "packages/vern-llm"
|
|
60
68
|
},
|
|
61
69
|
"license": "MIT",
|