@comate/zulu 0.0.9 → 0.0.12

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 (286) hide show
  1. package/README.md +98 -0
  2. package/comate-engine/bin/comate.js +10 -0
  3. package/comate-engine/fallbackServer.js +1 -0
  4. package/comate-engine/node_modules/@comate/plugin-engine/dist/index.d.ts +188 -0
  5. package/comate-engine/node_modules/@comate/plugin-engine/dist/index.js +36 -0
  6. package/comate-engine/node_modules/@comate/plugin-engine/package.json +49 -0
  7. package/comate-engine/node_modules/@comate/plugin-host/bin.js +44 -0
  8. package/comate-engine/node_modules/@comate/plugin-host/dist/index.js +1 -0
  9. package/comate-engine/node_modules/@comate/plugin-host/dist/main.d.ts +14 -0
  10. package/comate-engine/node_modules/@comate/plugin-host/dist/main.js +9 -0
  11. package/comate-engine/node_modules/@comate/plugin-host/dist/user-Btg63hPI.js +36 -0
  12. package/comate-engine/node_modules/@comate/plugin-host/package.json +47 -0
  13. package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.d.ts +2849 -0
  14. package/comate-engine/node_modules/@comate/plugin-shared-internals/dist/index.js +36 -0
  15. package/comate-engine/node_modules/@comate/plugin-shared-internals/package.json +72 -0
  16. package/comate-engine/node_modules/@comate/preview-proxy/bin/preview.js +13 -0
  17. package/comate-engine/node_modules/@comate/preview-proxy/dist/index.js +350 -0
  18. package/comate-engine/node_modules/@comate/preview-proxy/package.json +83 -0
  19. package/comate-engine/node_modules/@comate/preview-proxy/static/comate-preview-injector.css +1 -0
  20. package/comate-engine/node_modules/@comate/preview-proxy/static/comate-preview-injector.js +2 -0
  21. package/comate-engine/node_modules/@comate/preview-proxy/static/comate-preview-injector.js.LICENSE.txt +58 -0
  22. package/comate-engine/node_modules/compare-versions/LICENSE +21 -0
  23. package/comate-engine/node_modules/compare-versions/README.md +133 -0
  24. package/comate-engine/node_modules/compare-versions/lib/esm/compare.d.ts +19 -0
  25. package/comate-engine/node_modules/compare-versions/lib/esm/compare.js +44 -0
  26. package/comate-engine/node_modules/compare-versions/lib/esm/compare.js.map +1 -0
  27. package/comate-engine/node_modules/compare-versions/lib/esm/compareVersions.d.ts +8 -0
  28. package/comate-engine/node_modules/compare-versions/lib/esm/compareVersions.js +29 -0
  29. package/comate-engine/node_modules/compare-versions/lib/esm/compareVersions.js.map +1 -0
  30. package/comate-engine/node_modules/compare-versions/lib/esm/index.d.ts +5 -0
  31. package/comate-engine/node_modules/compare-versions/lib/esm/index.js +5 -0
  32. package/comate-engine/node_modules/compare-versions/lib/esm/index.js.map +1 -0
  33. package/comate-engine/node_modules/compare-versions/lib/esm/satisfies.d.ts +14 -0
  34. package/comate-engine/node_modules/compare-versions/lib/esm/satisfies.js +66 -0
  35. package/comate-engine/node_modules/compare-versions/lib/esm/satisfies.js.map +1 -0
  36. package/comate-engine/node_modules/compare-versions/lib/esm/utils.d.ts +7 -0
  37. package/comate-engine/node_modules/compare-versions/lib/esm/utils.js +37 -0
  38. package/comate-engine/node_modules/compare-versions/lib/esm/utils.js.map +1 -0
  39. package/comate-engine/node_modules/compare-versions/lib/esm/validate.d.ts +28 -0
  40. package/comate-engine/node_modules/compare-versions/lib/esm/validate.js +31 -0
  41. package/comate-engine/node_modules/compare-versions/lib/esm/validate.js.map +1 -0
  42. package/comate-engine/node_modules/compare-versions/lib/umd/index.js +216 -0
  43. package/comate-engine/node_modules/compare-versions/lib/umd/index.js.map +1 -0
  44. package/comate-engine/node_modules/compare-versions/package.json +45 -0
  45. package/comate-engine/node_modules/compare-versions/src/compare.ts +54 -0
  46. package/comate-engine/node_modules/compare-versions/src/compareVersions.ts +31 -0
  47. package/comate-engine/node_modules/compare-versions/src/index.ts +5 -0
  48. package/comate-engine/node_modules/compare-versions/src/satisfies.ts +69 -0
  49. package/comate-engine/node_modules/compare-versions/src/utils.ts +50 -0
  50. package/comate-engine/node_modules/compare-versions/src/validate.ts +36 -0
  51. package/comate-engine/node_modules/pkce-challenge/LICENSE +21 -0
  52. package/comate-engine/node_modules/pkce-challenge/README.md +55 -0
  53. package/comate-engine/node_modules/pkce-challenge/dist/index.browser.d.ts +19 -0
  54. package/comate-engine/node_modules/pkce-challenge/dist/index.browser.js +72 -0
  55. package/comate-engine/node_modules/pkce-challenge/dist/index.node.cjs +80 -0
  56. package/comate-engine/node_modules/pkce-challenge/dist/index.node.d.cts +19 -0
  57. package/comate-engine/node_modules/pkce-challenge/dist/index.node.d.ts +19 -0
  58. package/comate-engine/node_modules/pkce-challenge/dist/index.node.js +75 -0
  59. package/comate-engine/node_modules/pkce-challenge/package.json +58 -0
  60. package/comate-engine/node_modules/web-streams-polyfill/LICENSE +22 -0
  61. package/comate-engine/node_modules/web-streams-polyfill/README.md +119 -0
  62. package/comate-engine/node_modules/web-streams-polyfill/dist/polyfill.es5.js +8 -0
  63. package/comate-engine/node_modules/web-streams-polyfill/dist/polyfill.js +8 -0
  64. package/comate-engine/node_modules/web-streams-polyfill/dist/ponyfill.es5.js +8 -0
  65. package/comate-engine/node_modules/web-streams-polyfill/dist/ponyfill.es5.mjs +8 -0
  66. package/comate-engine/node_modules/web-streams-polyfill/dist/ponyfill.js +8 -0
  67. package/comate-engine/node_modules/web-streams-polyfill/dist/ponyfill.mjs +8 -0
  68. package/comate-engine/node_modules/web-streams-polyfill/package.json +98 -0
  69. package/comate-engine/node_modules/web-streams-polyfill/types/polyfill.d.ts +28 -0
  70. package/comate-engine/node_modules/web-streams-polyfill/types/ponyfill.d.ts +809 -0
  71. package/comate-engine/node_modules/web-streams-polyfill/types/tsdoc-metadata.json +11 -0
  72. package/comate-engine/package.json +94 -0
  73. package/comate-engine/plugins/aiscan/assets/icon.svg +12 -0
  74. package/comate-engine/plugins/aiscan/dist/index.js +53861 -0
  75. package/comate-engine/plugins/aiscan/package.json +67 -0
  76. package/comate-engine/plugins/appdev/assets/icon.png +0 -0
  77. package/comate-engine/plugins/appdev/dist/help.md +12 -0
  78. package/comate-engine/plugins/appdev/dist/index.d.ts +2 -0
  79. package/comate-engine/plugins/appdev/dist/index.js +194 -0
  80. package/comate-engine/plugins/appdev/dist/providers/err.d.ts +8 -0
  81. package/comate-engine/plugins/appdev/dist/providers/err.js +37 -0
  82. package/comate-engine/plugins/appdev/dist/providers/fallback.d.ts +5 -0
  83. package/comate-engine/plugins/appdev/dist/providers/fallback.js +28 -0
  84. package/comate-engine/plugins/appdev/dist/providers/help.d.ts +8 -0
  85. package/comate-engine/plugins/appdev/dist/providers/help.js +19 -0
  86. package/comate-engine/plugins/appdev/dist/providers/medusa.d.ts +8 -0
  87. package/comate-engine/plugins/appdev/dist/providers/medusa.js +39 -0
  88. package/comate-engine/plugins/appdev/dist/providers/qa.d.ts +8 -0
  89. package/comate-engine/plugins/appdev/dist/providers/qa.js +33 -0
  90. package/comate-engine/plugins/appdev/package.json +67 -0
  91. package/comate-engine/plugins/bfc/assets/bfc-icon.png +0 -0
  92. package/comate-engine/plugins/bfc/dist/config/config.d.ts +4 -0
  93. package/comate-engine/plugins/bfc/dist/config/config.js +4 -0
  94. package/comate-engine/plugins/bfc/dist/help.md +11 -0
  95. package/comate-engine/plugins/bfc/dist/index.d.ts +2 -0
  96. package/comate-engine/plugins/bfc/dist/index.js +452 -0
  97. package/comate-engine/plugins/bfc/dist/providers/bfcInstructMode.d.ts +8 -0
  98. package/comate-engine/plugins/bfc/dist/providers/bfcInstructMode.js +77 -0
  99. package/comate-engine/plugins/bfc/dist/providers/genAbnormalCode.d.ts +8 -0
  100. package/comate-engine/plugins/bfc/dist/providers/genAbnormalCode.js +71 -0
  101. package/comate-engine/plugins/bfc/dist/providers/genBfcCode.d.ts +8 -0
  102. package/comate-engine/plugins/bfc/dist/providers/genBfcCode.js +74 -0
  103. package/comate-engine/plugins/bfc/dist/providers/getBatchCases.d.ts +10 -0
  104. package/comate-engine/plugins/bfc/dist/providers/getBatchCases.js +71 -0
  105. package/comate-engine/plugins/bfc/dist/providers/help.d.ts +8 -0
  106. package/comate-engine/plugins/bfc/dist/providers/help.js +19 -0
  107. package/comate-engine/plugins/bfc/dist/service/generateService.d.ts +14 -0
  108. package/comate-engine/plugins/bfc/dist/service/generateService.js +27 -0
  109. package/comate-engine/plugins/bfc/package.json +85 -0
  110. package/comate-engine/plugins/bpm/assets/bpm.png +0 -0
  111. package/comate-engine/plugins/bpm/dist/index.js +313 -0
  112. package/comate-engine/plugins/bpm/package.json +65 -0
  113. package/comate-engine/plugins/casebuilder/assets/icon.svg +1 -0
  114. package/comate-engine/plugins/casebuilder/dist/help.md +33 -0
  115. package/comate-engine/plugins/casebuilder/dist/index.js +837 -0
  116. package/comate-engine/plugins/casebuilder/package.json +80 -0
  117. package/comate-engine/plugins/centrino/assets/icon.png +0 -0
  118. package/comate-engine/plugins/centrino/dist/help.md +30 -0
  119. package/comate-engine/plugins/centrino/dist/index.js +1046 -0
  120. package/comate-engine/plugins/centrino/package.json +68 -0
  121. package/comate-engine/plugins/cnap/assets/cnap.png +0 -0
  122. package/comate-engine/plugins/cnap/dist/help.md +11 -0
  123. package/comate-engine/plugins/cnap/dist/index.js +171 -0
  124. package/comate-engine/plugins/cnap/package.json +65 -0
  125. package/comate-engine/plugins/demo-feature/assets/icon.svg +1 -0
  126. package/comate-engine/plugins/demo-feature/dist/help.md +1 -0
  127. package/comate-engine/plugins/demo-feature/dist/index.d.ts +2 -0
  128. package/comate-engine/plugins/demo-feature/dist/index.js +36008 -0
  129. package/comate-engine/plugins/demo-feature/dist/providers/codeQuery.d.ts +12 -0
  130. package/comate-engine/plugins/demo-feature/dist/providers/codeQuery.js +23 -0
  131. package/comate-engine/plugins/demo-feature/dist/providers/codeSearch.d.ts +8 -0
  132. package/comate-engine/plugins/demo-feature/dist/providers/codeSearch.js +26 -0
  133. package/comate-engine/plugins/demo-feature/dist/providers/config.d.ts +13 -0
  134. package/comate-engine/plugins/demo-feature/dist/providers/config.js +25 -0
  135. package/comate-engine/plugins/demo-feature/dist/providers/context.d.ts +10 -0
  136. package/comate-engine/plugins/demo-feature/dist/providers/context.js +49 -0
  137. package/comate-engine/plugins/demo-feature/dist/providers/debugAgent.d.ts +8 -0
  138. package/comate-engine/plugins/demo-feature/dist/providers/debugAgent.js +65 -0
  139. package/comate-engine/plugins/demo-feature/dist/providers/explainCode.d.ts +9 -0
  140. package/comate-engine/plugins/demo-feature/dist/providers/explainCode.js +24 -0
  141. package/comate-engine/plugins/demo-feature/dist/providers/fallback.d.ts +5 -0
  142. package/comate-engine/plugins/demo-feature/dist/providers/fallback.js +23 -0
  143. package/comate-engine/plugins/demo-feature/dist/providers/file.d.ts +13 -0
  144. package/comate-engine/plugins/demo-feature/dist/providers/file.js +36 -0
  145. package/comate-engine/plugins/demo-feature/dist/providers/help.d.ts +8 -0
  146. package/comate-engine/plugins/demo-feature/dist/providers/help.js +19 -0
  147. package/comate-engine/plugins/demo-feature/dist/providers/information.d.ts +13 -0
  148. package/comate-engine/plugins/demo-feature/dist/providers/information.js +23 -0
  149. package/comate-engine/plugins/demo-feature/dist/providers/knowledge.d.ts +15 -0
  150. package/comate-engine/plugins/demo-feature/dist/providers/knowledge.js +71 -0
  151. package/comate-engine/plugins/demo-feature/dist/providers/log.d.ts +12 -0
  152. package/comate-engine/plugins/demo-feature/dist/providers/log.js +21 -0
  153. package/comate-engine/plugins/demo-feature/dist/providers/onlyCode.d.ts +8 -0
  154. package/comate-engine/plugins/demo-feature/dist/providers/onlyCode.js +23 -0
  155. package/comate-engine/plugins/demo-feature/dist/providers/pluginConfig.d.ts +8 -0
  156. package/comate-engine/plugins/demo-feature/dist/providers/pluginConfig.js +47 -0
  157. package/comate-engine/plugins/demo-feature/dist/providers/prompt.d.ts +7 -0
  158. package/comate-engine/plugins/demo-feature/dist/providers/prompt.js +7 -0
  159. package/comate-engine/plugins/demo-feature/dist/providers/ragProvider.d.ts +8 -0
  160. package/comate-engine/plugins/demo-feature/dist/providers/ragProvider.js +17 -0
  161. package/comate-engine/plugins/demo-feature/dist/providers/render.d.ts +8 -0
  162. package/comate-engine/plugins/demo-feature/dist/providers/render.js +75 -0
  163. package/comate-engine/plugins/demo-feature/dist/providers/renderJsx.d.ts +10 -0
  164. package/comate-engine/plugins/demo-feature/dist/providers/renderJsx.js +173 -0
  165. package/comate-engine/plugins/demo-feature/dist/providers/section.d.ts +8 -0
  166. package/comate-engine/plugins/demo-feature/dist/providers/section.js +136 -0
  167. package/comate-engine/plugins/demo-feature/dist/providers/selectedKnowledge.d.ts +12 -0
  168. package/comate-engine/plugins/demo-feature/dist/providers/selectedKnowledge.js +17 -0
  169. package/comate-engine/plugins/demo-feature/dist/providers/streaming.d.ts +8 -0
  170. package/comate-engine/plugins/demo-feature/dist/providers/streaming.js +29 -0
  171. package/comate-engine/plugins/demo-feature/dist/providers/userDetail.d.ts +8 -0
  172. package/comate-engine/plugins/demo-feature/dist/providers/userDetail.js +28 -0
  173. package/comate-engine/plugins/demo-feature/package.json +214 -0
  174. package/comate-engine/plugins/demo-timer/assets/icon.svg +2 -0
  175. package/comate-engine/plugins/demo-timer/dist/index.js +463 -0
  176. package/comate-engine/plugins/demo-timer/package.json +73 -0
  177. package/comate-engine/plugins/dev-tools/assets/icon.png +0 -0
  178. package/comate-engine/plugins/dev-tools/dist/help.md +18 -0
  179. package/comate-engine/plugins/dev-tools/dist/index.js +166160 -0
  180. package/comate-engine/plugins/dev-tools/package.json +95 -0
  181. package/comate-engine/plugins/devaux/assets/icon.svg +1 -0
  182. package/comate-engine/plugins/devaux/dist/help.md +41 -0
  183. package/comate-engine/plugins/devaux/dist/index.js +73829 -0
  184. package/comate-engine/plugins/devaux/dist/static/tree-sitter-cpp.wasm +0 -0
  185. package/comate-engine/plugins/devaux/dist/static/tree-sitter-go.wasm +0 -0
  186. package/comate-engine/plugins/devaux/dist/static/tree-sitter.wasm +0 -0
  187. package/comate-engine/plugins/devaux/dist/tree-sitter.wasm +0 -0
  188. package/comate-engine/plugins/devaux/package.json +83 -0
  189. package/comate-engine/plugins/f2c/assets/icon.svg +11 -0
  190. package/comate-engine/plugins/f2c/dist/help.md +13 -0
  191. package/comate-engine/plugins/f2c/dist/index.js +64551 -0
  192. package/comate-engine/plugins/f2c/package.json +56 -0
  193. package/comate-engine/plugins/fcnap/assets/icon.png +0 -0
  194. package/comate-engine/plugins/fcnap/dist/help.md +9 -0
  195. package/comate-engine/plugins/fcnap/dist/index.js +105 -0
  196. package/comate-engine/plugins/fcnap/package.json +50 -0
  197. package/comate-engine/plugins/front-end-skills/assets/icon.svg +1 -0
  198. package/comate-engine/plugins/front-end-skills/dist/help.md +17 -0
  199. package/comate-engine/plugins/front-end-skills/dist/index.js +8172 -0
  200. package/comate-engine/plugins/front-end-skills/package.json +79 -0
  201. package/comate-engine/plugins/gdp/assets/icon.png +0 -0
  202. package/comate-engine/plugins/gdp/dist/help.md +11 -0
  203. package/comate-engine/plugins/gdp/dist/index.js +53065 -0
  204. package/comate-engine/plugins/gdp/package.json +79 -0
  205. package/comate-engine/plugins/git/assets/git.svg +1 -0
  206. package/comate-engine/plugins/git/assets/icon.svg +1 -0
  207. package/comate-engine/plugins/git/dist/help.md +7 -0
  208. package/comate-engine/plugins/git/dist/index.js +32675 -0
  209. package/comate-engine/plugins/git/package.json +91 -0
  210. package/comate-engine/plugins/harmonyos/assets/harmonyos.png +0 -0
  211. package/comate-engine/plugins/harmonyos/dist/index.js +78 -0
  212. package/comate-engine/plugins/harmonyos/package.json +37 -0
  213. package/comate-engine/plugins/iapi/assets/icon.png +0 -0
  214. package/comate-engine/plugins/iapi/dist/help.md +13 -0
  215. package/comate-engine/plugins/iapi/dist/index.js +458 -0
  216. package/comate-engine/plugins/iapi/dist/static/lang/tree-sitter-go.wasm +0 -0
  217. package/comate-engine/plugins/iapi/dist/static/lang/tree-sitter-java.wasm +0 -0
  218. package/comate-engine/plugins/iapi/dist/static/tree-sitter-go.wasm +0 -0
  219. package/comate-engine/plugins/iapi/dist/static/tree-sitter-java.wasm +0 -0
  220. package/comate-engine/plugins/iapi/dist/tree-sitter.wasm +0 -0
  221. package/comate-engine/plugins/iapi/package.json +102 -0
  222. package/comate-engine/plugins/icafe/assets/icafe.svg +1 -0
  223. package/comate-engine/plugins/icafe/dist/help.md +5 -0
  224. package/comate-engine/plugins/icafe/dist/index.js +885 -0
  225. package/comate-engine/plugins/icafe/package.json +74 -0
  226. package/comate-engine/plugins/ievalue/assets/iEValue.svg +10 -0
  227. package/comate-engine/plugins/ievalue/dist/index.js +2920 -0
  228. package/comate-engine/plugins/ievalue/package.json +88 -0
  229. package/comate-engine/plugins/ipipe/assets/iPipePlugin.png +0 -0
  230. package/comate-engine/plugins/ipipe/dist/help.md +15 -0
  231. package/comate-engine/plugins/ipipe/dist/index.js +7264 -0
  232. package/comate-engine/plugins/ipipe/package.json +62 -0
  233. package/comate-engine/plugins/jarvis/assets/icon.svg +1 -0
  234. package/comate-engine/plugins/jarvis/dist/help.md +17 -0
  235. package/comate-engine/plugins/jarvis/dist/index.js +140416 -0
  236. package/comate-engine/plugins/jarvis/package.json +93 -0
  237. package/comate-engine/plugins/mapsearch/assets/mapsearchicon.png +0 -0
  238. package/comate-engine/plugins/mapsearch/dist/help.md +4 -0
  239. package/comate-engine/plugins/mapsearch/dist/index.js +145 -0
  240. package/comate-engine/plugins/mapsearch/package.json +53 -0
  241. package/comate-engine/plugins/paddle/assets/icon.png +0 -0
  242. package/comate-engine/plugins/paddle/assets/paconvert-3.0.1-py3-none-any.whl +0 -0
  243. package/comate-engine/plugins/paddle/dist/help.md +31 -0
  244. package/comate-engine/plugins/paddle/dist/index.js +1011 -0
  245. package/comate-engine/plugins/paddle/package.json +129 -0
  246. package/comate-engine/plugins/robot/assets/Robot.png +0 -0
  247. package/comate-engine/plugins/robot/dist/index.js +288 -0
  248. package/comate-engine/plugins/robot/package.json +67 -0
  249. package/comate-engine/plugins/security/assets/comate.png +0 -0
  250. package/comate-engine/plugins/security/dist/index.js +18393 -0
  251. package/comate-engine/plugins/security/package.json +82 -0
  252. package/comate-engine/plugins/smartapp/assets/icon.png +0 -0
  253. package/comate-engine/plugins/smartapp/dist/help.md +4 -0
  254. package/comate-engine/plugins/smartapp/dist/index.js +113 -0
  255. package/comate-engine/plugins/smartapp/package.json +54 -0
  256. package/comate-engine/plugins/springer/assets/icon.png +0 -0
  257. package/comate-engine/plugins/springer/dist/help.md +4 -0
  258. package/comate-engine/plugins/springer/dist/index.js +94525 -0
  259. package/comate-engine/plugins/springer/package.json +71 -0
  260. package/comate-engine/plugins/testmate/assets/icon.svg +1 -0
  261. package/comate-engine/plugins/testmate/dist/help.md +62 -0
  262. package/comate-engine/plugins/testmate/dist/index.js +21483 -0
  263. package/comate-engine/plugins/testmate/package.json +85 -0
  264. package/comate-engine/plugins/tor/assets/TorPlugin.png +0 -0
  265. package/comate-engine/plugins/tor/dist/help.md +22 -0
  266. package/comate-engine/plugins/tor/dist/index.js +807 -0
  267. package/comate-engine/plugins/tor/package.json +99 -0
  268. package/comate-engine/plugins/weiyun/assets/icon.png +0 -0
  269. package/comate-engine/plugins/weiyun/dist/help.md +11 -0
  270. package/comate-engine/plugins/weiyun/dist/index.js +100491 -0
  271. package/comate-engine/plugins/weiyun/package.json +55 -0
  272. package/comate-engine/plugins/wenku/assets/icon.svg +1 -0
  273. package/comate-engine/plugins/wenku/dist/index.js +249 -0
  274. package/comate-engine/plugins/wenku/package.json +55 -0
  275. package/comate-engine/plugins/workcard/assets/favicon.png +0 -0
  276. package/comate-engine/plugins/workcard/dist/help.md +30 -0
  277. package/comate-engine/plugins/workcard/dist/index.js +490 -0
  278. package/comate-engine/plugins/workcard/package.json +95 -0
  279. package/comate-engine/plugins/xiaomi-aiot/assets/icon.png +0 -0
  280. package/comate-engine/plugins/xiaomi-aiot/dist/help.md +6 -0
  281. package/comate-engine/plugins/xiaomi-aiot/dist/index.js +37466 -0
  282. package/comate-engine/plugins/xiaomi-aiot/package.json +63 -0
  283. package/comate-engine/server.d.ts +3 -0
  284. package/comate-engine/server.js +474 -0
  285. package/dist/bundle/index.js +29 -58174
  286. package/package.json +2 -1
@@ -0,0 +1,11 @@
1
+ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.
2
+ // It should be published with your NPM package. It should not be tracked by Git.
3
+ {
4
+ "tsdocVersion": "0.12",
5
+ "toolPackages": [
6
+ {
7
+ "packageName": "@microsoft/api-extractor",
8
+ "packageVersion": "7.48.1"
9
+ }
10
+ ]
11
+ }
@@ -0,0 +1,94 @@
1
+ {
2
+ "private": true,
3
+ "name": "@comate/kernel",
4
+ "version": "0.9.2",
5
+ "type": "module",
6
+ "exports": {
7
+ ".": {
8
+ "import": "./dist/server.js",
9
+ "require": "./dist/server.js"
10
+ }
11
+ },
12
+ "files": [
13
+ "dist"
14
+ ],
15
+ "publishConfig": {
16
+ "registry": "http://registry.npm.baidu-int.com"
17
+ },
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "ssh://wuweiqi@icode.baidu.com:8235/baidu/ide/comate-plugin-host"
21
+ },
22
+ "scripts": {
23
+ "build": "rm -rf dist && tsc -p ./ && rollup -c fallbackServer.rollup.config.js",
24
+ "dev": "node ./scripts/watch.js",
25
+ "bundle": "rollup -c rollup.config.js"
26
+ },
27
+ "dependencies": {
28
+ "@comate/kernel": "0.9.2",
29
+ "@comate/kernel-shared": "0.9.2",
30
+ "@comate/plugin-engine": "^0.9.2",
31
+ "@mischnic/json-sourcemap": "^0.1.1",
32
+ "@modelcontextprotocol/sdk": "^1.15.0",
33
+ "@types/crypto-js": "^4.2.2",
34
+ "@types/decompress": "^4.2.7",
35
+ "@types/ignore-by-default": "^0.0.0",
36
+ "@types/lodash": "^4.14.202",
37
+ "@types/qs": "^6.9.11",
38
+ "ajv": "^8.17.1",
39
+ "axios": "^1.9.0",
40
+ "chokidar": "^3.5.3",
41
+ "compare-versions": "^6.1.1",
42
+ "crypto-js": "^4.2.0",
43
+ "dayjs": "^1.11.13",
44
+ "decompress": "^4.2.1",
45
+ "default-shell": "^2.2.0",
46
+ "diff": "^7.0.0",
47
+ "fast-deep-equal": "^3.1.3",
48
+ "fastest-levenshtein": "^1.0.16",
49
+ "fdir": "^6.4.5",
50
+ "form-data": "^4.0.0",
51
+ "globby": "13.2.2",
52
+ "gray-matter": "^4.0.3",
53
+ "iconv-lite": "^0.5.1",
54
+ "ignore": "^5.3.1",
55
+ "ignore-by-default": "^2.1.0",
56
+ "inversify": "^6.0.1",
57
+ "isomorphic-git": "^1.27.1",
58
+ "js-yaml": "^4.1.0",
59
+ "junk": "^4.0.1",
60
+ "lodash": "^4.17.21",
61
+ "lowdb": "^7.0.1",
62
+ "marked": "^11.2.0",
63
+ "os-name": "^6.0.0",
64
+ "p-memoize": "^7.1.1",
65
+ "picomatch": "^4.0.2",
66
+ "pkce-challenge": "^5.0.0",
67
+ "qs": "^6.11.2",
68
+ "reflect-metadata": "^0.1.13",
69
+ "simple-git": "^3.25.0",
70
+ "systeminformation": "^5.23.19",
71
+ "tildify": "^3.0.0",
72
+ "vscode-languageserver": "8.0.2",
73
+ "vscode-languageserver-textdocument": "^1.0.11",
74
+ "vscode-uri": "^3.0.8",
75
+ "web-streams-polyfill": "^4.1.0"
76
+ },
77
+ "devDependencies": {
78
+ "@comate/plugin-host": "^0.9.2",
79
+ "@comate/plugin-shared-internals": "^0.9.2",
80
+ "@comate/preview-proxy": "workspace:^",
81
+ "@reskript/config-lint": "^6.1.1",
82
+ "@rollup/plugin-alias": "^5.1.1",
83
+ "@rollup/plugin-commonjs": "^25.0.7",
84
+ "@rollup/plugin-json": "^6.1.0",
85
+ "@rollup/plugin-node-resolve": "^15.2.3",
86
+ "@rollup/plugin-replace": "^5.0.5",
87
+ "@types/diff": "^5.0.9",
88
+ "@types/js-yaml": "^4.0.9",
89
+ "@types/picomatch": "^4.0.0",
90
+ "rollup": "^4.9.2",
91
+ "rollup-plugin-dts": "^6.1.0",
92
+ "vscode-languageserver-types": "^3.17.5"
93
+ }
94
+ }
@@ -0,0 +1,12 @@
1
+ <svg width="96" height="96" viewBox="0 0 96 96" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_25_2)">
3
+ <path d="M50.5 4L12 20.7273V45.8182C12 69.0273 28.4267 90.7309 50.5 96C72.5733 90.7309 89 69.0273 89 45.8182V20.7273L50.5 4Z" fill="#F2BC0C" fill-opacity="0.91"/>
4
+ <path d="M38.8896 59.3947C38.212 59.7711 37.388 59.7711 36.7104 59.3947L22.7204 51.6225C20.663 50.4795 20.663 47.5205 22.7204 46.3775L36.6909 38.6162C37.3807 38.233 38.2193 38.233 38.9091 38.6162C40.4753 39.4863 40.4753 41.7387 38.9091 42.6088L32.0429 46.4234C29.9855 47.5664 29.9855 50.5253 32.0429 51.6683L38.8896 55.472C40.4284 56.3269 40.4284 58.5398 38.8896 59.3947ZM65.3091 59.3838C64.6193 59.767 63.7807 59.767 63.0909 59.3838C61.5247 58.5137 61.5247 56.2613 63.0909 55.3912L69.9571 51.5766C72.0145 50.4336 72.0145 47.4747 69.9571 46.3317L63.1104 42.528C61.5716 41.6731 61.5716 39.4602 63.1104 38.6053C63.788 38.2289 64.612 38.2289 65.2896 38.6053L79.2796 46.3775C81.337 47.5205 81.337 50.4795 79.2795 51.6225L65.3091 59.3838Z" fill="#FDFDFF"/>
5
+ <line x1="59.7647" y1="32.9412" x2="43.7647" y2="62.9412" stroke="white" stroke-width="4"/>
6
+ </g>
7
+ <defs>
8
+ <clipPath id="clip0_25_2">
9
+ <rect width="96" height="96" fill="white"/>
10
+ </clipPath>
11
+ </defs>
12
+ </svg>