@copilotkit/mcp-apps-renderer 1.71.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.
Files changed (47) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +45 -0
  3. package/dist/activity.cjs +9 -0
  4. package/dist/activity.d.cts +4 -0
  5. package/dist/activity.d.mts +4 -0
  6. package/dist/activity.mjs +5 -0
  7. package/dist/activity.umd.js +91 -0
  8. package/dist/activity.umd.js.map +1 -0
  9. package/dist/constants.cjs +32 -0
  10. package/dist/constants.cjs.map +1 -0
  11. package/dist/constants.d.cts +23 -0
  12. package/dist/constants.d.cts.map +1 -0
  13. package/dist/constants.d.mts +23 -0
  14. package/dist/constants.d.mts.map +1 -0
  15. package/dist/constants.mjs +30 -0
  16. package/dist/constants.mjs.map +1 -0
  17. package/dist/content-schema.cjs +23 -0
  18. package/dist/content-schema.cjs.map +1 -0
  19. package/dist/content-schema.d.cts +51 -0
  20. package/dist/content-schema.d.cts.map +1 -0
  21. package/dist/content-schema.d.mts +51 -0
  22. package/dist/content-schema.d.mts.map +1 -0
  23. package/dist/content-schema.mjs +23 -0
  24. package/dist/content-schema.mjs.map +1 -0
  25. package/dist/follow-up.cjs +34 -0
  26. package/dist/follow-up.cjs.map +1 -0
  27. package/dist/follow-up.d.cts +42 -0
  28. package/dist/follow-up.d.cts.map +1 -0
  29. package/dist/follow-up.d.mts +42 -0
  30. package/dist/follow-up.d.mts.map +1 -0
  31. package/dist/follow-up.mjs +33 -0
  32. package/dist/follow-up.mjs.map +1 -0
  33. package/dist/index.d.mts +7 -0
  34. package/dist/index.mjs +8 -0
  35. package/dist/request-queue.d.mts +31 -0
  36. package/dist/request-queue.d.mts.map +1 -0
  37. package/dist/request-queue.mjs +93 -0
  38. package/dist/request-queue.mjs.map +1 -0
  39. package/dist/sandbox.d.mts +16 -0
  40. package/dist/sandbox.d.mts.map +1 -0
  41. package/dist/sandbox.mjs +52 -0
  42. package/dist/sandbox.mjs.map +1 -0
  43. package/dist/session.d.mts +81 -0
  44. package/dist/session.d.mts.map +1 -0
  45. package/dist/session.mjs +221 -0
  46. package/dist/session.mjs.map +1 -0
  47. package/package.json +77 -0
package/package.json ADDED
@@ -0,0 +1,77 @@
1
+ {
2
+ "name": "@copilotkit/mcp-apps-renderer",
3
+ "version": "1.71.2",
4
+ "private": false,
5
+ "description": "Framework-agnostic MCP Apps host for CopilotKit - the app<->host protocol (ext-apps AppBridge), sandbox proxy, and shared renderer consumed by the React, Vue, and Angular frontends",
6
+ "keywords": [
7
+ "ai",
8
+ "copilotkit",
9
+ "mcp",
10
+ "mcp-apps",
11
+ "ext-apps",
12
+ "renderer",
13
+ "ui"
14
+ ],
15
+ "homepage": "https://github.com/CopilotKit/CopilotKit",
16
+ "license": "MIT",
17
+ "repository": {
18
+ "type": "git",
19
+ "url": "git+https://github.com/CopilotKit/CopilotKit.git",
20
+ "directory": "packages/mcp-apps-renderer"
21
+ },
22
+ "files": [
23
+ "dist"
24
+ ],
25
+ "type": "module",
26
+ "module": "./dist/index.mjs",
27
+ "types": "./dist/index.d.mts",
28
+ "exports": {
29
+ ".": {
30
+ "import": {
31
+ "types": "./dist/index.d.mts",
32
+ "default": "./dist/index.mjs"
33
+ }
34
+ },
35
+ "./activity": {
36
+ "import": {
37
+ "types": "./dist/activity.d.mts",
38
+ "default": "./dist/activity.mjs"
39
+ },
40
+ "require": {
41
+ "types": "./dist/activity.d.cts",
42
+ "default": "./dist/activity.cjs"
43
+ }
44
+ },
45
+ "./package.json": "./package.json"
46
+ },
47
+ "publishConfig": {
48
+ "access": "public"
49
+ },
50
+ "dependencies": {
51
+ "@modelcontextprotocol/ext-apps": "^1.7.5",
52
+ "@modelcontextprotocol/sdk": "^1.29.0",
53
+ "@copilotkit/shared": "1.71.2"
54
+ },
55
+ "peerDependencies": {
56
+ "@ag-ui/client": "0.0.59",
57
+ "zod": ">=3.25"
58
+ },
59
+ "devDependencies": {
60
+ "@ag-ui/client": "0.0.59",
61
+ "@modelcontextprotocol/sdk": "^1.29.0",
62
+ "jsdom": "^26.1.0",
63
+ "tsdown": "^0.20.3",
64
+ "typescript": "5.9.2",
65
+ "vitest": "^3.2.4",
66
+ "zod": "^3.25.76"
67
+ },
68
+ "scripts": {
69
+ "build": "tsdown",
70
+ "compat-check": "es-check es2022 --module 'dist/**/!(*.umd).{mjs,cjs,js}' && es-check es2018 'dist/**/*.umd.js'",
71
+ "check-types": "tsc --noEmit -p tsconfig.json",
72
+ "test": "vitest run",
73
+ "test:watch": "vitest",
74
+ "publint": "publint .",
75
+ "attw": "attw --pack . --profile esm-only --entrypoints . && attw --pack . --profile node16 --exclude-entrypoints ."
76
+ }
77
+ }