@far-world-labs/verblets 0.3.2 → 0.5.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/README.md +45 -25
- package/dist/index.browser.js +222 -71
- package/dist/index.js +435 -282
- package/dist/shared-C2_d1bKV.js +10802 -0
- package/package.json +9 -7
- package/dist/shared-C6kPWghF.js +0 -7806
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@far-world-labs/verblets",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "Verblets is a collection of tools for building LLM-powered applications.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
"node": "./dist/index.js",
|
|
11
11
|
"browser": "./dist/index.browser.js",
|
|
12
12
|
"default": "./dist/index.js"
|
|
13
|
-
}
|
|
13
|
+
},
|
|
14
|
+
"./*": "./dist/*"
|
|
14
15
|
},
|
|
15
16
|
"files": [
|
|
16
17
|
"dist"
|
|
@@ -32,7 +33,7 @@
|
|
|
32
33
|
"examples:browser": "source .env && USE_REDIS_CACHE=true vitest --config vitest.config.browser.examples.js",
|
|
33
34
|
"arch": "source .env && vitest --config vitest.config.arch.js",
|
|
34
35
|
"clear-cache": "node scripts/clear-redis.js",
|
|
35
|
-
"arch:debug": "source .env &&
|
|
36
|
+
"arch:debug": "source .env && VERBLETS_ARCH_DEBUG=true vitest --config .vitest.config.arch.js --run",
|
|
36
37
|
"build": "vite build",
|
|
37
38
|
"build:watch": "vite build --watch",
|
|
38
39
|
"lint": "eslint 'src/**/*.{js,jsx}'",
|
|
@@ -54,9 +55,11 @@
|
|
|
54
55
|
"access": "public"
|
|
55
56
|
},
|
|
56
57
|
"dependencies": {
|
|
58
|
+
"@huggingface/transformers": "^3.8.1",
|
|
57
59
|
"acorn": "^8.8.2",
|
|
58
60
|
"acorn-walk": "^8.2.0",
|
|
59
61
|
"ajv": "^8.12.0",
|
|
62
|
+
"better-sqlite3": "^12.6.2",
|
|
60
63
|
"chai": "^4.3.7",
|
|
61
64
|
"change-case": "^4.1.2",
|
|
62
65
|
"commander": "^11.0.0",
|
|
@@ -71,7 +74,6 @@
|
|
|
71
74
|
"node-fetch": "^3.3.0",
|
|
72
75
|
"node-record-lpcm16": "^1.0.1",
|
|
73
76
|
"p-limit": "^6.2.0",
|
|
74
|
-
"ramda": "^0.29.0",
|
|
75
77
|
"redis": "^4.6.5",
|
|
76
78
|
"uuid": "^9.0.0",
|
|
77
79
|
"vitest": "^3.1.3",
|
|
@@ -85,10 +87,10 @@
|
|
|
85
87
|
"dependency-cruiser": "^16.10.3",
|
|
86
88
|
"dependency-tree": "^10.0.1",
|
|
87
89
|
"eslint": "^9.28.0",
|
|
88
|
-
"eslint-config-prettier": "^
|
|
90
|
+
"eslint-config-prettier": "^10.1.8",
|
|
89
91
|
"eslint-plugin-import": "^2.31.0",
|
|
90
92
|
"eslint-plugin-jest": "^28.12.0",
|
|
91
|
-
"eslint-plugin-prettier": "^
|
|
93
|
+
"eslint-plugin-prettier": "^5.5.5",
|
|
92
94
|
"eslint-plugin-unicorn": "^59.0.1",
|
|
93
95
|
"eslint-plugin-vitest": "^0.5.4",
|
|
94
96
|
"husky": "^8.0.3",
|
|
@@ -97,7 +99,7 @@
|
|
|
97
99
|
"lint-staged": "^13.2.2",
|
|
98
100
|
"nodemon": "^3.1.10",
|
|
99
101
|
"npm-deprecated-check": "^1.5.0",
|
|
100
|
-
"prettier": "^
|
|
102
|
+
"prettier": "^3.8.1",
|
|
101
103
|
"release-it": "^19.0.3",
|
|
102
104
|
"terminal-kit": "^3.1.2",
|
|
103
105
|
"vite": "^7.0.6",
|