@kb-labs/mind-core 2.114.0 → 2.116.11
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 +19 -19
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/mind-core",
|
|
3
3
|
"description": "Core RAG engine for KB Labs Mind: ingest, retrieval, answer. Dry business logic over platform adapters.",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.116.11",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"types": "./dist/index.d.ts",
|
|
@@ -21,33 +21,33 @@
|
|
|
21
21
|
"README.md",
|
|
22
22
|
"LICENSE"
|
|
23
23
|
],
|
|
24
|
-
"scripts": {
|
|
25
|
-
"build": "tsup --config tsup.config.ts",
|
|
26
|
-
"clean": "rimraf dist",
|
|
27
|
-
"dev": "tsup --config tsup.config.ts --watch",
|
|
28
|
-
"lint": "eslint src --ext .ts",
|
|
29
|
-
"lint:fix": "eslint . --fix",
|
|
30
|
-
"pretype-check": "pnpm --filter @kb-labs/mind-core build",
|
|
31
|
-
"test": "vitest run --passWithNoTests",
|
|
32
|
-
"test:watch": "vitest",
|
|
33
|
-
"type-check": "tsc --noEmit"
|
|
34
|
-
},
|
|
35
24
|
"dependencies": {
|
|
36
|
-
"
|
|
37
|
-
"@kb-labs/sdk": "
|
|
38
|
-
"
|
|
25
|
+
"globby": "^11.0.0",
|
|
26
|
+
"@kb-labs/sdk": "2.115.0",
|
|
27
|
+
"@kb-labs/mind-contracts": "2.116.11"
|
|
39
28
|
},
|
|
40
29
|
"devDependencies": {
|
|
41
|
-
"@kb-labs/devkit": "workspace:*",
|
|
42
30
|
"@types/node": "^24.3.3",
|
|
43
31
|
"rimraf": "^6.0.1",
|
|
44
32
|
"tsup": "^8.5.0",
|
|
45
33
|
"typescript": "^5.6.3",
|
|
46
|
-
"vitest": "^3.2.6"
|
|
34
|
+
"vitest": "^3.2.6",
|
|
35
|
+
"@kb-labs/devkit": "2.116.11"
|
|
47
36
|
},
|
|
48
37
|
"engines": {
|
|
49
38
|
"node": ">=22.0.0",
|
|
50
39
|
"pnpm": ">=9.0.0"
|
|
51
40
|
},
|
|
52
|
-
"sideEffects": false
|
|
53
|
-
|
|
41
|
+
"sideEffects": false,
|
|
42
|
+
"scripts": {
|
|
43
|
+
"build": "tsup --config tsup.config.ts",
|
|
44
|
+
"clean": "rimraf dist",
|
|
45
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
46
|
+
"lint": "eslint src --ext .ts",
|
|
47
|
+
"lint:fix": "eslint . --fix",
|
|
48
|
+
"pretype-check": "pnpm --filter @kb-labs/mind-core build",
|
|
49
|
+
"test": "vitest run --passWithNoTests",
|
|
50
|
+
"test:watch": "vitest",
|
|
51
|
+
"type-check": "tsc --noEmit"
|
|
52
|
+
}
|
|
53
|
+
}
|