-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.07 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@mobile-reality/mdma-agui",
"version": "0.2.0",
"description": "Bridge that renders MDMA interactive documents streamed over the AG-UI protocol and routes user actions back into the agent run.",
"keywords": [
"mdma",
"markdown",
"ai",
"llm",
"interactive-document",
"ag-ui",
"agent",
"generative-ui",
"human-in-the-loop"
],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./react": {
"import": "./dist/react/index.js",
"types": "./dist/react/index.d.ts",
"default": "./dist/react/index.js"
}
},
"scripts": {
"build": "tsc -p tsconfig.json",
"test": "vitest run",
"lint": "biome lint src/",
"typecheck": "tsc -p tsconfig.typecheck.json"
},
"dependencies": {
"remark-parse": "^11.0.0",
"unified": "^11.0.0"
},
"peerDependencies": {
"@ag-ui/client": ">=0.0.30 <0.1.0",
"@ag-ui/core": ">=0.0.30 <0.1.0",
"@mobile-reality/mdma-attachables-core": "*",
"@mobile-reality/mdma-parser": "*",
"@mobile-reality/mdma-renderer-react": "*",
"@mobile-reality/mdma-runtime": "*",
"@mobile-reality/mdma-spec": "*",
"react": "^18.0.0 || ^19.0.0"
},
"peerDependenciesMeta": {
"@mobile-reality/mdma-renderer-react": {
"optional": true
},
"react": {
"optional": true
}
},
"devDependencies": {
"@ag-ui/client": "^0.0.57",
"@ag-ui/core": "^0.0.57",
"@mobile-reality/mdma-attachables-core": "workspace:*",
"@mobile-reality/mdma-parser": "workspace:*",
"@mobile-reality/mdma-renderer-react": "workspace:*",
"@mobile-reality/mdma-runtime": "workspace:*",
"@mobile-reality/mdma-spec": "workspace:*",
"@types/react": "^19.0.0",
"react": "^19.0.0",
"typescript": "^5.7.0",
"vitest": "^3.2.0"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MobileReality/mdma.git",
"directory": "packages/agui"
}
}