iobroker.autodoc 0.9.35

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 (42) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +126 -0
  3. package/admin/autodoc.png +0 -0
  4. package/admin/i18n/de.json +244 -0
  5. package/admin/i18n/en.json +241 -0
  6. package/admin/i18n/es.json +229 -0
  7. package/admin/i18n/fr.json +235 -0
  8. package/admin/i18n/it.json +229 -0
  9. package/admin/i18n/nl.json +229 -0
  10. package/admin/i18n/pl.json +229 -0
  11. package/admin/i18n/pt.json +229 -0
  12. package/admin/i18n/ru.json +229 -0
  13. package/admin/i18n/uk.json +229 -0
  14. package/admin/i18n/zh-cn.json +229 -0
  15. package/admin/jsonConfig.json +1490 -0
  16. package/io-package.json +253 -0
  17. package/lib/adapter-config.d.ts +19 -0
  18. package/lib/aiEnhancer.js +2114 -0
  19. package/lib/autoHostTopologyMermaid.js +195 -0
  20. package/lib/dependencyAnalyzer.js +83 -0
  21. package/lib/diagnosisSnapshot.js +32 -0
  22. package/lib/discovery.js +953 -0
  23. package/lib/docTemplateConfig.js +422 -0
  24. package/lib/documentModel.js +640 -0
  25. package/lib/forumCard.js +70 -0
  26. package/lib/guestHelpContent.js +93 -0
  27. package/lib/guestScriptPrivacy.js +14 -0
  28. package/lib/hostDisplay.js +19 -0
  29. package/lib/htmlRenderer.js +4108 -0
  30. package/lib/htmlThemePresets.js +79 -0
  31. package/lib/htmlToPdf.js +99 -0
  32. package/lib/i18n.js +1309 -0
  33. package/lib/markdownRenderer.js +2025 -0
  34. package/lib/mermaidAutodocPalette.js +165 -0
  35. package/lib/mermaidServerSvg.js +252 -0
  36. package/lib/notifier.js +124 -0
  37. package/lib/quickStartGuide.js +180 -0
  38. package/lib/roleMapper.js +90 -0
  39. package/lib/scriptGroups.js +78 -0
  40. package/lib/versionTracker.js +312 -0
  41. package/main.js +1368 -0
  42. package/package.json +88 -0
package/package.json ADDED
@@ -0,0 +1,88 @@
1
+ {
2
+ "name": "iobroker.autodoc",
3
+ "version": "0.9.35",
4
+ "description": "On-demand documentation for ioBroker",
5
+ "author": {
6
+ "name": "crunchip77",
7
+ "email": "41550245+crunchip77@users.noreply.github.com"
8
+ },
9
+ "contributors": [
10
+ {
11
+ "name": "crunchip77"
12
+ }
13
+ ],
14
+ "homepage": "https://github.com/crunchip77/ioBroker.autodoc",
15
+ "license": "MIT",
16
+ "keywords": [
17
+ "ioBroker",
18
+ "doc",
19
+ "documentation",
20
+ "analysis",
21
+ "mermaid",
22
+ "pdf"
23
+ ],
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "https://github.com/crunchip77/ioBroker.autodoc.git"
27
+ },
28
+ "engines": {
29
+ "node": ">= 22"
30
+ },
31
+ "overrides": {
32
+ "chromium-bidi": {
33
+ "devtools-protocol": "0.0.1107588"
34
+ }
35
+ },
36
+ "dependencies": {
37
+ "@iobroker/adapter-core": "^3.3.2",
38
+ "markdown-it": "^14.1.0",
39
+ "qrcode": "^1.5.4"
40
+ },
41
+ "optionalDependencies": {
42
+ "@mermaid-js/mermaid-cli": "10.9.1",
43
+ "puppeteer": "^19.0.0"
44
+ },
45
+ "devDependencies": {
46
+ "@alcalzone/release-script": "^5.1.1",
47
+ "@alcalzone/release-script-plugin-iobroker": "^5.1.2",
48
+ "@alcalzone/release-script-plugin-license": "^5.1.1",
49
+ "@alcalzone/release-script-plugin-manual-review": "^5.1.1",
50
+ "@iobroker/adapter-dev": "^1.5.0",
51
+ "@iobroker/dev-server": "^0.8.0",
52
+ "@iobroker/eslint-config": "^2.2.0",
53
+ "@iobroker/testing": "^5.2.2",
54
+ "@tsconfig/node22": "^22.0.5",
55
+ "@types/iobroker": "npm:@iobroker/types@^7.1.0",
56
+ "@types/node": "^25.5.0",
57
+ "cytoscape": "^3.33.3",
58
+ "d3-selection": "^3.0.0",
59
+ "devtools-protocol": "^0.0.1107588",
60
+ "typescript": "~6.0.2"
61
+ },
62
+ "main": "main.js",
63
+ "files": [
64
+ "LICENSE",
65
+ "io-package.json",
66
+ "main.js",
67
+ "lib/",
68
+ "www/",
69
+ "admin{,/!(src)/**}/!(tsconfig|tsconfig.*|.eslintrc).{json,json5}",
70
+ "admin{,/!(src)/**}/*.{html,css,png,svg,jpg,js}"
71
+ ],
72
+ "scripts": {
73
+ "test:js": "mocha --config test/mocharc.custom.json \"{!(node_modules|test)/**/*.test.js,*.test.js,test/**/test!(PackageFiles|Startup).js}\"",
74
+ "test:package": "mocha test/package --exit",
75
+ "test:integration": "mocha test/integration --exit",
76
+ "test": "npm run test:js && npm run test:package",
77
+ "check": "tsc --noEmit -p tsconfig.check.json",
78
+ "lint": "eslint -c eslint.config.mjs .",
79
+ "adapter-check": "npx --yes @iobroker/repochecker \"https://github.com/crunchip77/ioBroker.autodoc\" main --local",
80
+ "translate": "translate-adapter",
81
+ "release": "release-script",
82
+ "dev-server": "dev-server"
83
+ },
84
+ "bugs": {
85
+ "url": "https://github.com/crunchip77/ioBroker.autodoc/issues"
86
+ },
87
+ "readmeFilename": "README.md"
88
+ }