@kya-os/mcp-i 1.5.9 → 1.6.1
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/295.js +1 -1
- package/dist/cli-adapter/index.d.ts +2 -0
- package/dist/cli-adapter/index.js +9 -5
- package/dist/cli-adapter/kta-registration.d.ts +9 -0
- package/dist/cli-adapter/kta-registration.js +75 -0
- package/dist/compiler/get-webpack-config/index.js +11 -2
- package/dist/index.js.LICENSE.txt +0 -6
- package/dist/runtime/adapter-express.js +1 -1
- package/dist/runtime/adapter-nextjs.js +1 -1
- package/dist/runtime/audit.d.ts +53 -0
- package/dist/runtime/audit.js +62 -0
- package/dist/runtime/http.js +1 -1
- package/dist/runtime/identity.d.ts +12 -0
- package/dist/runtime/identity.js +15 -1
- package/dist/runtime/index.d.ts +1 -1
- package/dist/runtime/mcpi-runtime-wrapper.d.ts +2 -3
- package/dist/runtime/mcpi-runtime-wrapper.js +20 -17
- package/dist/runtime/stdio.js +1 -1
- package/package.json +22 -18
package/package.json
CHANGED
|
@@ -1,40 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kya-os/mcp-i",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.1",
|
|
4
4
|
"description": "The TypeScript MCP framework with identity features built-in",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
10
11
|
"require": "./dist/index.js",
|
|
11
|
-
"import": "./dist/index.js"
|
|
12
|
-
"types": "./dist/index.d.ts"
|
|
12
|
+
"import": "./dist/index.js"
|
|
13
13
|
},
|
|
14
14
|
"./platforms": {
|
|
15
|
+
"types": "./dist/identity/platforms.d.ts",
|
|
15
16
|
"require": "./dist/identity/platforms.js",
|
|
16
|
-
"import": "./dist/identity/platforms.js"
|
|
17
|
-
"types": "./dist/identity/platforms.d.ts"
|
|
17
|
+
"import": "./dist/identity/platforms.js"
|
|
18
18
|
},
|
|
19
19
|
"./test": {
|
|
20
|
+
"types": "./dist/test/index.d.ts",
|
|
20
21
|
"require": "./dist/test/index.js",
|
|
21
|
-
"import": "./dist/test/index.js"
|
|
22
|
-
"types": "./dist/test/index.d.ts"
|
|
22
|
+
"import": "./dist/test/index.js"
|
|
23
23
|
},
|
|
24
24
|
"./headers": {
|
|
25
|
+
"types": "./dist/runtime/headers.d.ts",
|
|
25
26
|
"require": "./dist/runtime/headers.js",
|
|
26
|
-
"import": "./dist/runtime/headers.js"
|
|
27
|
-
"types": "./dist/runtime/headers.d.ts"
|
|
27
|
+
"import": "./dist/runtime/headers.js"
|
|
28
28
|
},
|
|
29
29
|
"./cli-internal": {
|
|
30
|
+
"types": "./dist/cli-adapter/index.d.ts",
|
|
30
31
|
"require": "./dist/cli-adapter/index.js",
|
|
31
|
-
"import": "./dist/cli-adapter/index.js"
|
|
32
|
-
"types": "./dist/cli-adapter/index.d.ts"
|
|
32
|
+
"import": "./dist/cli-adapter/index.js"
|
|
33
33
|
},
|
|
34
34
|
"./config": {
|
|
35
|
+
"types": "./dist/config.d.ts",
|
|
35
36
|
"require": "./dist/config.js",
|
|
36
|
-
"import": "./dist/config.js"
|
|
37
|
-
|
|
37
|
+
"import": "./dist/config.js"
|
|
38
|
+
},
|
|
39
|
+
"./runtime": {
|
|
40
|
+
"types": "./dist/runtime/index.d.ts",
|
|
41
|
+
"require": "./dist/runtime/index.js",
|
|
42
|
+
"import": "./dist/runtime/index.js"
|
|
38
43
|
}
|
|
39
44
|
},
|
|
40
45
|
"files": [
|
|
@@ -58,8 +63,8 @@
|
|
|
58
63
|
"model-context-protocol"
|
|
59
64
|
],
|
|
60
65
|
"dependencies": {
|
|
61
|
-
"@kya-os/contracts": "^1.
|
|
62
|
-
"@kya-os/mcp-i-core": "^1.
|
|
66
|
+
"@kya-os/contracts": "^1.6.1",
|
|
67
|
+
"@kya-os/mcp-i-core": "^1.3.1",
|
|
63
68
|
"@modelcontextprotocol/sdk": "^1.11.4",
|
|
64
69
|
"@swc/core": "^1.11.24",
|
|
65
70
|
"@types/express": "^5.0.1",
|
|
@@ -69,18 +74,17 @@
|
|
|
69
74
|
"base-x": "^5.0.1",
|
|
70
75
|
"chalk": "^5.2.0",
|
|
71
76
|
"chokidar": "^3.6.0",
|
|
72
|
-
"clean-webpack-plugin": "^4.0.0",
|
|
73
77
|
"commander": "^10.0.0",
|
|
74
78
|
"content-type": "^1.0.5",
|
|
75
79
|
"cross-env": "^7.0.3",
|
|
76
|
-
"del": "^
|
|
80
|
+
"del": "^8.0.1",
|
|
77
81
|
"dotenv": "^16.5.0",
|
|
78
82
|
"esbuild": "^0.25.0",
|
|
79
83
|
"execa": "^9.6.0",
|
|
80
84
|
"express": "^4.18.0",
|
|
81
85
|
"fork-ts-checker-webpack-plugin": "^8.0.0",
|
|
82
86
|
"fs-extra": "^11.3.0",
|
|
83
|
-
"glob": "^11.0
|
|
87
|
+
"glob": "^11.1.0",
|
|
84
88
|
"handlebars": "^4.7.7",
|
|
85
89
|
"jose": "^5.2.0",
|
|
86
90
|
"json-canonicalize": "^2.0.0",
|