@kb-labs/mind-entry 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.
Files changed (1) hide show
  1. package/package.json +20 -20
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kb-labs/mind-entry",
3
3
  "description": "Manifest, CLI commands and REST handlers for KB Labs Mind (RAG) plugin.",
4
- "version": "2.114.0",
4
+ "version": "2.116.11",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "types": "./dist/index.d.ts",
@@ -21,30 +21,18 @@
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-entry build",
31
- "test": "vitest run --passWithNoTests",
32
- "test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests",
33
- "test:watch": "vitest",
34
- "type-check": "tsc --noEmit"
35
- },
36
24
  "dependencies": {
37
- "@kb-labs/mind-contracts": "^2.114.0",
38
- "@kb-labs/mind-core": "^2.114.0",
39
- "@kb-labs/sdk": "workspace:*"
25
+ "@kb-labs/mind-contracts": "2.116.11",
26
+ "@kb-labs/mind-core": "2.116.11",
27
+ "@kb-labs/sdk": "2.115.0"
40
28
  },
41
29
  "devDependencies": {
42
- "@kb-labs/devkit": "workspace:*",
43
30
  "@types/node": "^24.3.3",
44
31
  "rimraf": "^6.0.1",
45
32
  "tsup": "^8.5.0",
46
33
  "typescript": "^5.6.3",
47
- "vitest": "^3.2.6"
34
+ "vitest": "^3.2.6",
35
+ "@kb-labs/devkit": "2.116.11"
48
36
  },
49
37
  "engines": {
50
38
  "node": ">=22.0.0",
@@ -53,5 +41,17 @@
53
41
  "kb": {
54
42
  "manifest": "./dist/manifest.js"
55
43
  },
56
- "sideEffects": false
57
- }
44
+ "sideEffects": false,
45
+ "scripts": {
46
+ "build": "tsup --config tsup.config.ts",
47
+ "clean": "rimraf dist",
48
+ "dev": "tsup --config tsup.config.ts --watch",
49
+ "lint": "eslint src --ext .ts",
50
+ "lint:fix": "eslint . --fix",
51
+ "pretype-check": "pnpm --filter @kb-labs/mind-entry build",
52
+ "test": "vitest run --passWithNoTests",
53
+ "test:cli": "vitest run --config vitest.cli.config.ts --passWithNoTests",
54
+ "test:watch": "vitest",
55
+ "type-check": "tsc --noEmit"
56
+ }
57
+ }