@kb-labs/core-runtime 1.0.0 → 1.2.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/dist/index.cjs +17 -27
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +40 -8
- package/dist/index.d.ts +40 -8
- package/dist/index.js +18 -28
- package/dist/index.js.map +1 -1
- package/package.json +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kb-labs/core-runtime",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "DI Container + Core Features Implementations for KB Labs Platform",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -13,17 +13,27 @@
|
|
|
13
13
|
"require": "./dist/index.cjs"
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsup",
|
|
18
|
+
"clean": "rimraf dist",
|
|
19
|
+
"test": "vitest run --passWithNoTests",
|
|
20
|
+
"test:watch": "vitest",
|
|
21
|
+
"dev": "tsup --config tsup.config.ts --watch",
|
|
22
|
+
"lint": "eslint src --ext .ts",
|
|
23
|
+
"lint:fix": "eslint . --fix",
|
|
24
|
+
"type-check": "tsc --noEmit"
|
|
25
|
+
},
|
|
16
26
|
"dependencies": {
|
|
17
|
-
"
|
|
18
|
-
"@kb-labs/core-ipc": "
|
|
19
|
-
"@kb-labs/core-
|
|
20
|
-
"@kb-labs/core-
|
|
21
|
-
"@kb-labs/
|
|
22
|
-
"@kb-labs/
|
|
23
|
-
"
|
|
27
|
+
"@kb-labs/core-contracts": "workspace:*",
|
|
28
|
+
"@kb-labs/core-ipc": "workspace:*",
|
|
29
|
+
"@kb-labs/core-platform": "workspace:*",
|
|
30
|
+
"@kb-labs/core-resource-broker": "workspace:*",
|
|
31
|
+
"@kb-labs/llm-router": "workspace:*",
|
|
32
|
+
"@kb-labs/plugin-execution-factory": "workspace:*",
|
|
33
|
+
"glob": "^11.0.0"
|
|
24
34
|
},
|
|
25
35
|
"devDependencies": {
|
|
26
|
-
"@kb-labs/devkit": "
|
|
36
|
+
"@kb-labs/devkit": "^1.0.0",
|
|
27
37
|
"@types/node": "^24.3.3",
|
|
28
38
|
"tsup": "^8.5.0",
|
|
29
39
|
"typescript": "^5.6.3",
|
|
@@ -48,15 +58,5 @@
|
|
|
48
58
|
},
|
|
49
59
|
"publishConfig": {
|
|
50
60
|
"access": "public"
|
|
51
|
-
},
|
|
52
|
-
"scripts": {
|
|
53
|
-
"build": "tsup",
|
|
54
|
-
"clean": "rimraf dist",
|
|
55
|
-
"test": "vitest run --passWithNoTests",
|
|
56
|
-
"test:watch": "vitest",
|
|
57
|
-
"dev": "tsup --config tsup.config.ts --watch",
|
|
58
|
-
"lint": "eslint src --ext .ts",
|
|
59
|
-
"lint:fix": "eslint . --fix",
|
|
60
|
-
"type-check": "tsc --noEmit"
|
|
61
61
|
}
|
|
62
|
-
}
|
|
62
|
+
}
|