mcp-native 0.0.1 → 0.0.2

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/README.md CHANGED
@@ -1,5 +1,3 @@
1
- # MCP Native
1
+ # mcp-native
2
2
 
3
- Native UI runtime for Model Context Protocol applications.
4
-
5
- Early development.
3
+ Convenience package that re-exports the MCP Native public packages.
@@ -0,0 +1,5 @@
1
+ export * from "@mcp-native/core";
2
+ export * from "@mcp-native/a2ui";
3
+ export * from "@mcp-native/react-native";
4
+ export * from "@mcp-native/webview";
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC"}
package/dist/index.js ADDED
@@ -0,0 +1,5 @@
1
+ export * from "@mcp-native/core";
2
+ export * from "@mcp-native/a2ui";
3
+ export * from "@mcp-native/react-native";
4
+ export * from "@mcp-native/webview";
5
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,kBAAkB,CAAC;AACjC,cAAc,kBAAkB,CAAC;AACjC,cAAc,0BAA0B,CAAC;AACzC,cAAc,qBAAqB,CAAC"}
package/package.json CHANGED
@@ -1,9 +1,34 @@
1
1
  {
2
2
  "name": "mcp-native",
3
- "version": "0.0.1",
4
- "description": "Native UI runtime for Model Context Protocol applications",
5
- "main": "index.js",
6
- "scripts": {},
7
- "author": "Pavel Ivanov Kuvashev",
8
- "license": "MIT"
3
+ "version": "0.0.2",
4
+ "description": "Convenience package for the MCP Native runtime.",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/pablospaniard/mcp-native.git",
9
+ "directory": "packages/mcp-native"
10
+ },
11
+ "files": [
12
+ "dist",
13
+ "README.md"
14
+ ],
15
+ "type": "module",
16
+ "sideEffects": false,
17
+ "main": "./dist/index.js",
18
+ "types": "./dist/index.d.ts",
19
+ "exports": {
20
+ ".": {
21
+ "types": "./dist/index.d.ts",
22
+ "import": "./dist/index.js"
23
+ }
24
+ },
25
+ "publishConfig": {
26
+ "access": "public"
27
+ },
28
+ "dependencies": {
29
+ "@mcp-native/a2ui": "^0.0.2",
30
+ "@mcp-native/core": "^0.0.2",
31
+ "@mcp-native/react-native": "^0.0.2",
32
+ "@mcp-native/webview": "^0.0.2"
33
+ }
9
34
  }
package/index.js DELETED
@@ -1 +0,0 @@
1
- module.exports = {};