@xyd-js/mcp 0.0.0-build-9f87f13-20250930210637

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 (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +89 -0
  3. package/dist/index.js +149918 -0
  4. package/package.json +48 -0
package/package.json ADDED
@@ -0,0 +1,48 @@
1
+ {
2
+ "name": "@xyd-js/mcp",
3
+ "version": "0.0.0-build-9f87f13-20250930210637",
4
+ "description": "Model Context Protocol (MCP) utilities for xyd (library mode)",
5
+ "main": "dist/index.js",
6
+ "type": "module",
7
+ "exports": {
8
+ "./package.json": "./package.json",
9
+ ".": {
10
+ "import": "./dist/index.js"
11
+ }
12
+ },
13
+ "files": [
14
+ "package.json",
15
+ "dist"
16
+ ],
17
+ "dependencies": {
18
+ "@modelcontextprotocol/sdk": "^1.18.1",
19
+ "json-schema-to-zod": "^2.6.1",
20
+ "openux-js": "^0.0.0-pre.0",
21
+ "remark": "^15.0.1",
22
+ "remark-gfm": "^4.0.1",
23
+ "remark-stringify": "^11.0.0",
24
+ "turndown": "^7.2.1",
25
+ "turndown-plugin-gfm": "^1.0.2",
26
+ "unist-builder": "^4.0.0",
27
+ "zod": "^3.25.76",
28
+ "@xyd-js/atlas": "0.0.0-build-9f87f13-20250930210637",
29
+ "@xyd-js/components": "0.0.0-build-9f87f13-20250930210637",
30
+ "@xyd-js/core": "0.0.0-build-9f87f13-20250930210637",
31
+ "@xyd-js/framework": "0.0.0-build-9f87f13-20250930210637",
32
+ "@xyd-js/gql": "0.0.0-build-9f87f13-20250930210637",
33
+ "@xyd-js/openapi": "0.0.0-build-9f87f13-20250930210637",
34
+ "@xyd-js/plugins": "0.0.0-build-9f87f13-20250930210637",
35
+ "@xyd-js/uniform": "0.0.0-build-9f87f13-20250930210637"
36
+ },
37
+ "devDependencies": {
38
+ "@types/node": "^20.9.0",
39
+ "@types/turndown": "^5.0.5",
40
+ "typescript": "^5.6.2",
41
+ "rimraf": "^3.0.2"
42
+ },
43
+ "scripts": {
44
+ "build": "bun build index.ts --outdir dist --target node --format esm",
45
+ "dev": "bun --watch index.ts",
46
+ "clean": "rimraf build"
47
+ }
48
+ }