@likec4/language-server 1.48.0 → 1.49.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 (78) 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/LikeC4Views.mjs +34 -0
  7. package/dist/_chunks/ProjectsManager.mjs +1 -0
  8. package/dist/_chunks/WithMCPServer.mjs +481 -0
  9. package/dist/_chunks/icons.mjs +2 -5211
  10. package/dist/_chunks/{LikeC4LanguageServices.d.mts → index.d.mts} +1836 -707
  11. package/dist/_chunks/libs/@msgpack/msgpack.mjs +1 -805
  12. package/dist/_chunks/libs/eventemitter3.mjs +1 -243
  13. package/dist/_chunks/libs/fast-equals.mjs +1 -446
  14. package/dist/_chunks/libs/p-queue.mjs +1 -449
  15. package/dist/_chunks/libs/parse-ms.mjs +1 -36
  16. package/dist/_chunks/libs/picomatch.mjs +1 -1673
  17. package/dist/_chunks/libs/pretty-ms.mjs +1 -80
  18. package/dist/_chunks/libs/remeda.mjs +1 -482
  19. package/dist/_chunks/libs/strip-indent.mjs +1 -15
  20. package/dist/_chunks/libs/ufo.mjs +1 -166
  21. package/dist/_chunks/logger.mjs +1 -0
  22. package/dist/_chunks/rolldown-runtime.mjs +1 -42
  23. package/dist/_chunks/utils.mjs +1 -0
  24. package/dist/browser/index.d.mts +10 -0
  25. package/dist/browser/index.mjs +1 -0
  26. package/dist/browser/worker.mjs +1 -0
  27. package/dist/bundled.d.mts +2 -3
  28. package/dist/bundled.mjs +1 -51
  29. package/dist/filesystem/index.d.mts +2 -4
  30. package/dist/filesystem/index.mjs +1 -3
  31. package/dist/index.d.mts +38 -3
  32. package/dist/index.mjs +1 -48
  33. package/dist/likec4lib.d.mts +10 -3
  34. package/dist/likec4lib.mjs +1 -4
  35. package/dist/mcp/index.d.mts +2 -4
  36. package/dist/mcp/index.mjs +1 -3
  37. package/dist/module.d.mts +126 -4
  38. package/dist/module.mjs +1 -3
  39. package/dist/protocol.d.mts +314 -1
  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/common-exports.mjs +0 -0
  53. package/dist/_chunks/filesystem.mjs +0 -58
  54. package/dist/_chunks/grammar.mjs +0 -8
  55. package/dist/_chunks/libs/@hono/node-server.mjs +0 -436
  56. package/dist/_chunks/libs/hono.mjs +0 -1829
  57. package/dist/_chunks/likec4lib.mjs +0 -9
  58. package/dist/_chunks/mcp.mjs +0 -33
  59. package/dist/_chunks/module.mjs +0 -28
  60. package/dist/_chunks/module2.mjs +0 -6576
  61. package/dist/_chunks/protocol.d.mts +0 -311
  62. package/dist/_chunks/protocol.mjs +0 -78
  63. package/dist/ast.d.mts +0 -4
  64. package/dist/ast.mjs +0 -4
  65. package/dist/browser-worker.mjs +0 -6
  66. package/dist/browser.d.mts +0 -11
  67. package/dist/browser.mjs +0 -27
  68. package/dist/common-exports.d.mts +0 -4
  69. package/dist/common-exports.mjs +0 -5
  70. package/dist/generated/ast.d.mts +0 -2
  71. package/dist/generated/ast.mjs +0 -3
  72. package/dist/generated/grammar.d.mts +0 -6
  73. package/dist/generated/grammar.mjs +0 -3
  74. package/dist/generated/module.d.mts +0 -14
  75. package/dist/generated/module.mjs +0 -3
  76. package/dist/generated-lib/icons.d.mts +0 -4
  77. package/dist/generated-lib/icons.mjs +0 -3
  78. /package/dist/{browser-worker.d.mts → browser/worker.d.mts} +0 -0
@@ -1,4 +1,4 @@
1
1
  {
2
- "types": "../dist/browser.d.mts",
3
- "module": "../dist/browser.mjs"
2
+ "types": "../dist/browser/index.d.mts",
3
+ "module": "../dist/browser/index.mjs"
4
4
  }
@@ -1,4 +1,4 @@
1
1
  {
2
- "types": "../dist/browser-worker.d.mts",
3
- "module": "../dist/browser-worker.mjs"
2
+ "types": "../dist/browser/worker.d.mts",
3
+ "module": "../dist/browser/worker.mjs"
4
4
  }
@@ -0,0 +1,178 @@
1
+ # Licenses of Bundled Dependencies
2
+
3
+ The published artifact additionally contains code with the following licenses:
4
+ ISC, MIT
5
+
6
+ # Bundled Dependencies
7
+
8
+ ## @msgpack/msgpack
9
+
10
+ License: ISC
11
+ By: The MessagePack community
12
+ Repository: https://github.com/msgpack/msgpack-javascript
13
+
14
+ > Copyright 2019 The MessagePack Community.
15
+ >
16
+ > Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies.
17
+ >
18
+ > THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
19
+
20
+ ---------------------------------------
21
+
22
+ ## eventemitter3
23
+
24
+ License: MIT
25
+ By: Arnout Kazemier
26
+ Repository: https://github.com/primus/eventemitter3
27
+
28
+ > The MIT License (MIT)
29
+ >
30
+ > Copyright (c) 2014 Arnout Kazemier
31
+ >
32
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
33
+ > of this software and associated documentation files (the "Software"), to deal
34
+ > in the Software without restriction, including without limitation the rights
35
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
36
+ > copies of the Software, and to permit persons to whom the Software is
37
+ > furnished to do so, subject to the following conditions:
38
+ >
39
+ > The above copyright notice and this permission notice shall be included in all
40
+ > copies or substantial portions of the Software.
41
+ >
42
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
43
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
44
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
45
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
46
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
47
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
48
+ > SOFTWARE.
49
+
50
+ ---------------------------------------
51
+
52
+ ## fast-equals
53
+
54
+ License: MIT
55
+ By: Tony Quetano
56
+ Repository: https://github.com/planttheidea/fast-equals
57
+
58
+ > MIT License
59
+ >
60
+ > Copyright (c) 2025 Tony Quetano
61
+ >
62
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
63
+ > of this software and associated documentation files (the "Software"), to deal
64
+ > in the Software without restriction, including without limitation the rights
65
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
66
+ > copies of the Software, and to permit persons to whom the Software is
67
+ > furnished to do so, subject to the following conditions:
68
+ >
69
+ > The above copyright notice and this permission notice shall be included in all
70
+ > copies or substantial portions of the Software.
71
+ >
72
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
73
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
74
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
75
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
76
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
77
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
78
+ > SOFTWARE.
79
+
80
+ ---------------------------------------
81
+
82
+ ## p-queue, p-timeout, parse-ms, pretty-ms, strip-indent
83
+
84
+ License: MIT
85
+ Repository: https://github.com/sindresorhus/p-queue
86
+
87
+ License: MIT
88
+ By: Sindre Sorhus
89
+ Repository: https://github.com/sindresorhus/p-timeout
90
+
91
+ License: MIT
92
+ By: Sindre Sorhus
93
+ Repository: https://github.com/sindresorhus/parse-ms
94
+
95
+ License: MIT
96
+ By: Sindre Sorhus
97
+ Repository: https://github.com/sindresorhus/pretty-ms
98
+
99
+ License: MIT
100
+ By: Sindre Sorhus
101
+ Repository: https://github.com/sindresorhus/strip-indent
102
+
103
+ > MIT License
104
+ >
105
+ > Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
106
+ >
107
+ > Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
108
+ >
109
+ > The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
110
+ >
111
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
112
+
113
+ ---------------------------------------
114
+
115
+ ## picomatch
116
+
117
+ License: MIT
118
+ By: Jon Schlinkert
119
+ Repository: https://github.com/micromatch/picomatch
120
+
121
+ > The MIT License (MIT)
122
+ >
123
+ > Copyright (c) 2017-present, Jon Schlinkert.
124
+ >
125
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
126
+ > of this software and associated documentation files (the "Software"), to deal
127
+ > in the Software without restriction, including without limitation the rights
128
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
129
+ > copies of the Software, and to permit persons to whom the Software is
130
+ > furnished to do so, subject to the following conditions:
131
+ >
132
+ > The above copyright notice and this permission notice shall be included in
133
+ > all copies or substantial portions of the Software.
134
+ >
135
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
136
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
137
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
138
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
139
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
140
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
141
+ > THE SOFTWARE.
142
+
143
+ ---------------------------------------
144
+
145
+ ## remeda
146
+
147
+ License: MIT
148
+ By: Łukasz Sentkiewicz
149
+ Repository: https://github.com/remeda/remeda
150
+
151
+ ---------------------------------------
152
+
153
+ ## ufo
154
+
155
+ License: MIT
156
+ Repository: https://github.com/unjs/ufo
157
+
158
+ > MIT License
159
+ >
160
+ > Copyright (c) Pooya Parsa <pooya@pi0.io>
161
+ >
162
+ > Permission is hereby granted, free of charge, to any person obtaining a copy
163
+ > of this software and associated documentation files (the "Software"), to deal
164
+ > in the Software without restriction, including without limitation the rights
165
+ > to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
166
+ > copies of the Software, and to permit persons to whom the Software is
167
+ > furnished to do so, subject to the following conditions:
168
+ >
169
+ > The above copyright notice and this permission notice shall be included in all
170
+ > copies or substantial portions of the Software.
171
+ >
172
+ > THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
173
+ > IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
174
+ > FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
175
+ > AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
176
+ > LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
177
+ > OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
178
+ > SOFTWARE.