@likec4/language-server 1.48.0 → 1.50.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 (75) hide show
  1. package/browser/package.json +2 -2
  2. package/browser-worker/package.json +2 -2
  3. package/dist/THIRD-PARTY-LICENSES.md +178 -0
  4. package/dist/_chunks/ConfigurableLayouter.mjs +1 -1956
  5. package/dist/_chunks/LikeC4FileSystem.mjs +3 -0
  6. package/dist/_chunks/WithMCPServer.mjs +1154 -0
  7. package/dist/_chunks/libs/@msgpack/msgpack.mjs +1 -805
  8. package/dist/_chunks/libs/eventemitter3.mjs +1 -243
  9. package/dist/_chunks/libs/fast-equals.mjs +1 -446
  10. package/dist/_chunks/libs/p-queue.mjs +1 -449
  11. package/dist/_chunks/libs/parse-ms.mjs +1 -36
  12. package/dist/_chunks/libs/picomatch.mjs +1 -1673
  13. package/dist/_chunks/libs/pretty-ms.mjs +1 -80
  14. package/dist/_chunks/libs/remeda.mjs +2 -482
  15. package/dist/_chunks/libs/strip-indent.mjs +1 -15
  16. package/dist/_chunks/libs/ufo.mjs +1 -166
  17. package/dist/_chunks/likec4lib.mjs +2 -9
  18. package/dist/_chunks/{LikeC4LanguageServices.d.mts → module.d.mts} +2101 -732
  19. package/dist/_chunks/module.mjs +34 -28
  20. package/dist/_chunks/noop.mjs +1 -0
  21. package/dist/_chunks/protocol.d.mts +6 -2
  22. package/dist/_chunks/rolldown-runtime.mjs +1 -42
  23. package/dist/_chunks/utils.mjs +1 -0
  24. package/dist/_chunks/workspace.mjs +1 -0
  25. package/dist/browser/index.d.mts +15 -0
  26. package/dist/browser/index.mjs +1 -0
  27. package/dist/browser/worker.mjs +1 -0
  28. package/dist/bundled.d.mts +1 -2
  29. package/dist/bundled.mjs +1 -51
  30. package/dist/filesystem/index.d.mts +2 -3
  31. package/dist/filesystem/index.mjs +1 -3
  32. package/dist/index.d.mts +1 -2
  33. package/dist/index.mjs +1 -48
  34. package/dist/likec4lib.d.mts +10 -3
  35. package/dist/likec4lib.mjs +1 -4
  36. package/dist/mcp/index.d.mts +2 -3
  37. package/dist/mcp/index.mjs +1 -3
  38. package/dist/module.d.mts +2 -3
  39. package/dist/module.mjs +1 -3
  40. package/dist/protocol.mjs +1 -3
  41. package/filesystem/package.json +4 -0
  42. package/mcp/package.json +4 -0
  43. package/module/package.json +4 -0
  44. package/package.json +79 -56
  45. package/LICENSE +0 -21
  46. package/dist/LikeC4LanguageServices.d.mts +0 -4
  47. package/dist/LikeC4LanguageServices.mjs +0 -3
  48. package/dist/_chunks/LikeC4LanguageServices.mjs +0 -725
  49. package/dist/_chunks/ast.d.mts +0 -1444
  50. package/dist/_chunks/ast.mjs +0 -2375
  51. package/dist/_chunks/ast2.mjs +0 -176
  52. package/dist/_chunks/filesystem.mjs +0 -58
  53. package/dist/_chunks/grammar.mjs +0 -8
  54. package/dist/_chunks/icons.mjs +0 -5211
  55. package/dist/_chunks/libs/@hono/node-server.mjs +0 -436
  56. package/dist/_chunks/libs/hono.mjs +0 -1829
  57. package/dist/_chunks/mcp.mjs +0 -33
  58. package/dist/_chunks/module2.mjs +0 -6576
  59. package/dist/_chunks/protocol.mjs +0 -78
  60. package/dist/ast.d.mts +0 -4
  61. package/dist/ast.mjs +0 -4
  62. package/dist/browser-worker.mjs +0 -6
  63. package/dist/browser.d.mts +0 -11
  64. package/dist/browser.mjs +0 -27
  65. package/dist/common-exports.d.mts +0 -4
  66. package/dist/common-exports.mjs +0 -5
  67. package/dist/generated/ast.d.mts +0 -2
  68. package/dist/generated/ast.mjs +0 -3
  69. package/dist/generated/grammar.d.mts +0 -6
  70. package/dist/generated/grammar.mjs +0 -3
  71. package/dist/generated/module.d.mts +0 -14
  72. package/dist/generated/module.mjs +0 -3
  73. package/dist/generated-lib/icons.d.mts +0 -4
  74. package/dist/generated-lib/icons.mjs +0 -3
  75. /package/dist/{browser-worker.d.mts → browser/worker.d.mts} +0 -0
@@ -1,33 +0,0 @@
1
- //#region src/mcp/noop.ts
2
- var NoopLikeC4MCPServer = class {
3
- get mcp() {
4
- throw new Error("NoopLikeC4MCPServer does not have a McpServer");
5
- }
6
- get isStarted() {
7
- return false;
8
- }
9
- get port() {
10
- return NaN;
11
- }
12
- start() {
13
- return Promise.resolve();
14
- }
15
- stop() {
16
- return Promise.resolve();
17
- }
18
- };
19
- var NoopLikeC4MCPServerFactory = class {
20
- create(_options) {
21
- throw new Error("NoopLikeC4MCPServerFactory");
22
- }
23
- };
24
-
25
- //#endregion
26
- //#region src/mcp/index.ts
27
- const NoMCPServer = {
28
- mcpServer: () => new NoopLikeC4MCPServer(),
29
- mcpServerFactory: () => new NoopLikeC4MCPServerFactory()
30
- };
31
-
32
- //#endregion
33
- export { NoMCPServer as t };