-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2 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
{
"name": "@aimino/opentalk2html-notmd",
"version": "0.1.2",
"description": "OpenTalk2HTML-NotMD MCP Server — AI talks to you through beautiful HTML pages instead of overwhelming markdown dumps. Five-tier architecture with 18 tools, 22 components, 25+ templates.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"opentalk2html-notmd": "dist/index.js"
},
"files": [
"dist/",
"src/templates/*.dot"
],
"publishConfig": {
"access": "public"
},
"mcpName": "io.github.Aimino-Tech/opentalk2html-notmd",
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"components",
"open-talk-2-html-not-md",
"model-context-protocol",
"dom-manipulation",
"html",
"mcp",
"html-pages",
"typescript",
"templates",
"html-generation",
"ai",
"ai-communication",
"mcp-server",
"markdown-alternative"
],
"license": "GPL-3.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/Aimino-Tech/OpenTalk2HTML-NotMD.git"
},
"homepage": "https://github.com/Aimino-Tech/OpenTalk2HTML-NotMD#readme",
"bugs": {
"url": "https://github.com/Aimino-Tech/OpenTalk2HTML-NotMD/issues"
},
"scripts": {
"build": "tsc && cp -r src/templates/*.dot dist/templates/",
"start": "node dist/index.js",
"dev": "tsx src/index.ts",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"dompurify": "^3.2.0",
"dot": "^1.1.3",
"html-minifier-terser": "^7.2.0",
"js-beautify": "^1.15.0",
"jsdom": "^25.0.0",
"parse5": "^8.0.1",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/dompurify": "^3.0.0",
"@types/dot": "^1.1.0",
"@types/js-beautify": "^1.14.0",
"@types/jsdom": "^28.0.3",
"@types/node": "^22.0.0",
"@types/parse5": "^6.0.3",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"peerDependencies": {
"@opencode-ai/plugin": "^1.15.5"
}
}