dsh-plugin-manager-companion 0.1.0

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 (76) hide show
  1. package/LICENSE +21 -0
  2. package/README.en.md +144 -0
  3. package/README.md +142 -0
  4. package/cordis.patch.yml +9 -0
  5. package/dist/about.d.ts +77 -0
  6. package/dist/about.js +179 -0
  7. package/dist/cli.d.ts +226 -0
  8. package/dist/cli.js +856 -0
  9. package/dist/client/AboutPage.d.ts +75 -0
  10. package/dist/client/ConsolePage.d.ts +79 -0
  11. package/dist/client/KindsPage.d.ts +21 -0
  12. package/dist/client/MarketplacePage.d.ts +36 -0
  13. package/dist/client/OfficialSlots.d.ts +35 -0
  14. package/dist/client/UpgradeRow.d.ts +108 -0
  15. package/dist/client/index.d.ts +26 -0
  16. package/dist/client/locales.d.ts +475 -0
  17. package/dist/client/pmSelect.d.ts +38 -0
  18. package/dist/client/shared.d.ts +928 -0
  19. package/dist/client/upgradeView.d.ts +278 -0
  20. package/dist/client/wire.d.ts +401 -0
  21. package/dist/client.js +9194 -0
  22. package/dist/diagnostics.d.ts +332 -0
  23. package/dist/diagnostics.js +2631 -0
  24. package/dist/envManager.d.ts +1047 -0
  25. package/dist/envManager.js +3214 -0
  26. package/dist/fix.d.ts +60 -0
  27. package/dist/fix.js +168 -0
  28. package/dist/guard.d.ts +133 -0
  29. package/dist/guard.js +232 -0
  30. package/dist/index.d.ts +121 -0
  31. package/dist/index.js +1150 -0
  32. package/dist/installSession.d.ts +111 -0
  33. package/dist/installSession.js +150 -0
  34. package/dist/kinds.d.ts +464 -0
  35. package/dist/kinds.js +1029 -0
  36. package/dist/marketView.d.ts +261 -0
  37. package/dist/marketView.js +406 -0
  38. package/dist/marketplace.d.ts +248 -0
  39. package/dist/marketplace.js +500 -0
  40. package/dist/match.d.ts +67 -0
  41. package/dist/match.js +203 -0
  42. package/dist/net.d.ts +108 -0
  43. package/dist/net.js +163 -0
  44. package/dist/official.d.ts +145 -0
  45. package/dist/official.js +205 -0
  46. package/dist/paths.d.ts +108 -0
  47. package/dist/paths.js +236 -0
  48. package/dist/presets.d.ts +299 -0
  49. package/dist/presets.js +578 -0
  50. package/dist/qualityGate.d.ts +66 -0
  51. package/dist/qualityGate.js +247 -0
  52. package/dist/rank.d.ts +88 -0
  53. package/dist/rank.js +164 -0
  54. package/dist/registry.d.ts +295 -0
  55. package/dist/registry.js +686 -0
  56. package/dist/rest.d.ts +122 -0
  57. package/dist/rest.js +219 -0
  58. package/dist/scan.d.ts +134 -0
  59. package/dist/scan.js +396 -0
  60. package/dist/settings.d.ts +447 -0
  61. package/dist/settings.js +263 -0
  62. package/dist/tags.d.ts +119 -0
  63. package/dist/tags.js +166 -0
  64. package/dist/tools.d.ts +131 -0
  65. package/dist/tools.js +377 -0
  66. package/dist/types.d.ts +651 -0
  67. package/dist/types.js +13 -0
  68. package/dist/upgrade.d.ts +428 -0
  69. package/dist/upgrade.js +1100 -0
  70. package/dist/upgradeView.d.ts +313 -0
  71. package/dist/upgradeView.js +273 -0
  72. package/docs/images/readme/01-console-health.png +0 -0
  73. package/docs/images/readme/02-console-envs.png +0 -0
  74. package/docs/images/readme/03-marketplace.png +0 -0
  75. package/docs/images/readme/04-official-plugin-page.png +0 -0
  76. package/package.json +104 -0
package/package.json ADDED
@@ -0,0 +1,104 @@
1
+ {
2
+ "name": "dsh-plugin-manager-companion",
3
+ "version": "0.1.0",
4
+ "description": "Companion to the official DSH plugin manager: pre-install quality gate, deep environment diagnostics, plugin marketplace, and skills/presets management.",
5
+ "keywords": [
6
+ "deepseek",
7
+ "deepseek-harness",
8
+ "dsh",
9
+ "cordis",
10
+ "plugin",
11
+ "plugin-manager",
12
+ "companion",
13
+ "marketplace",
14
+ "diagnostics"
15
+ ],
16
+ "repository": {
17
+ "type": "git",
18
+ "url": "https://github.com/LX2000WASD/dsh-plugin-manager-companion.git"
19
+ },
20
+ "type": "module",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.ts",
24
+ "default": "./dist/index.js"
25
+ },
26
+ "./client": {
27
+ "types": "./dist/client/index.d.ts",
28
+ "default": "./dist/client.js"
29
+ },
30
+ "./package.json": "./package.json"
31
+ },
32
+ "files": [
33
+ "dist",
34
+ "cordis.patch.yml",
35
+ "README.en.md",
36
+ "docs/images/readme"
37
+ ],
38
+ "bin": {
39
+ "dshpmc": "./dist/cli.js"
40
+ },
41
+ "scripts": {
42
+ "build": "tsc -p tsconfig.host.json && tsc -p tsconfig.client.json && tsdown --config tsdown.client.config.ts",
43
+ "build:host": "tsc -p tsconfig.host.json",
44
+ "build:client": "tsc -p tsconfig.client.json && tsdown --config tsdown.client.config.ts",
45
+ "typecheck": "tsc --noEmit",
46
+ "test": "pnpm run build && node tools/run-tests.mjs"
47
+ },
48
+ "dsh": {
49
+ "bundle": {
50
+ "patch": "./cordis.patch.yml"
51
+ },
52
+ "client": {
53
+ "inject": [
54
+ "@deepseek-ai/dsh-client-locale",
55
+ "@deepseek-ai/dsh-client-ui-slots",
56
+ "@deepseek-ai/dsh-client-ui-renderer",
57
+ "@deepseek-ai/dsh-client-ui-settings",
58
+ "@deepseek-ai/dsh-client-ui-primitives",
59
+ "@deepseek-ai/dsh-client-store",
60
+ "@deepseek-ai/dsh-api-remotes"
61
+ ],
62
+ "platform": "web"
63
+ }
64
+ },
65
+ "peerDependencies": {
66
+ "@deepseek-ai/cordis": "^4.0.2",
67
+ "@deepseek-ai/dsh-app-boot": "^0.1.6-alpha.2",
68
+ "@deepseek-ai/dsh-atomic-write": "^0.1.6-alpha.2",
69
+ "@deepseek-ai/dsh-host-plugin-inventory": "^0.1.6-alpha.2",
70
+ "@deepseek-ai/dsh-plugin-manager": "^0.1.6-alpha.2",
71
+ "@deepseek-ai/dsh-tools": "^0.1.6-alpha.2",
72
+ "@deepseek-ai/schemastery": "^3.18.2",
73
+ "js-yaml": "^4.3.1"
74
+ },
75
+ "dependencies": {
76
+ "undici": "^7.29.0"
77
+ },
78
+ "devDependencies": {
79
+ "@deepseek-ai/cordis": "^4.0.2",
80
+ "@deepseek-ai/cordis-plugin-loader": "^1.0.3",
81
+ "@deepseek-ai/dsh-app-boot": "0.1.6-alpha.2",
82
+ "@deepseek-ai/dsh-atomic-write": "0.1.6-alpha.2",
83
+ "@deepseek-ai/dsh-client-locale": "0.1.6-alpha.2",
84
+ "@deepseek-ai/dsh-client-store": "0.1.6-alpha.2",
85
+ "@deepseek-ai/dsh-client-ui-primitives": "0.1.6-alpha.2",
86
+ "@deepseek-ai/dsh-client-ui-renderer": "0.1.6-alpha.2",
87
+ "@deepseek-ai/dsh-client-ui-settings": "0.1.6-alpha.2",
88
+ "@deepseek-ai/dsh-client-ui-slots": "0.1.6-alpha.2",
89
+ "@deepseek-ai/dsh-host-plugin-inventory": "0.1.6-alpha.2",
90
+ "@deepseek-ai/dsh-host-webserver": "0.1.6-alpha.2",
91
+ "@deepseek-ai/dsh-plugin-manager": "0.1.6-alpha.2",
92
+ "@deepseek-ai/dsh-tools": "0.1.6-alpha.2",
93
+ "@deepseek-ai/schemastery": "^3.18.2",
94
+ "@types/node": "^22.0.0",
95
+ "@types/react": "^18.2.0",
96
+ "js-yaml": "^4.3.1",
97
+ "lightningcss": "^1.33.0",
98
+ "react": "^18.2.0",
99
+ "react-dom": "^18.3.1",
100
+ "tsdown": "^0.22.2",
101
+ "typescript": "^5.6.0"
102
+ },
103
+ "license": "MIT"
104
+ }