@podlite/mcp 0.0.17 → 0.0.19
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/CHANGELOG.podlite +4 -0
- package/package.json +18 -6
package/CHANGELOG.podlite
CHANGED
|
@@ -2,6 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
=head1 Upcoming
|
|
4
4
|
|
|
5
|
+
=head1 0.0.18
|
|
6
|
+
|
|
7
|
+
=item the package declares an exports map and its own type entry, and no longer points at an esm build it never produced. A bundler that preferred that entry resolved to a missing file
|
|
8
|
+
|
|
5
9
|
=head1 0.0.3
|
|
6
10
|
|
|
7
11
|
=item declare public npm access so the package publishes to the registry
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@podlite/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.19",
|
|
4
4
|
"description": "MCP server for Podlite: parse, validate, render, and query tools for AI agents",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"podlite",
|
|
@@ -12,6 +12,20 @@
|
|
|
12
12
|
"llm-tools"
|
|
13
13
|
],
|
|
14
14
|
"main": "./lib/index.js",
|
|
15
|
+
"types": "./lib/index.d.ts",
|
|
16
|
+
"sideEffects": false,
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./lib/index.d.ts",
|
|
20
|
+
"require": "./lib/index.js",
|
|
21
|
+
"default": "./lib/index.js"
|
|
22
|
+
},
|
|
23
|
+
"./package.json": "./package.json",
|
|
24
|
+
"./lib/*": {
|
|
25
|
+
"types": "./lib/*.d.ts",
|
|
26
|
+
"default": "./lib/*.js"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
15
29
|
"bin": {
|
|
16
30
|
"podlite-mcp": "./bin/podlite-mcp.js"
|
|
17
31
|
},
|
|
@@ -40,13 +54,11 @@
|
|
|
40
54
|
},
|
|
41
55
|
"dependencies": {
|
|
42
56
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
43
|
-
"@podlite/schema": "0.0.
|
|
44
|
-
"podlite": "0.0.
|
|
57
|
+
"@podlite/schema": "0.0.69",
|
|
58
|
+
"podlite": "0.0.82",
|
|
45
59
|
"zod": "^3.25.0"
|
|
46
60
|
},
|
|
47
61
|
"publishConfig": {
|
|
48
62
|
"access": "public"
|
|
49
|
-
}
|
|
50
|
-
"module": "./esm/index.js",
|
|
51
|
-
"types": "./lib/index.d.ts"
|
|
63
|
+
}
|
|
52
64
|
}
|