CH4ACKO3/dsh-render-engine--packages-shiki0

@ch4acko3/dsh-shiki

Shared Shiki engine service for DeepSeek Harness Web plugins

AI 分析

核心用途是提供一个延迟加载的共享 Shiki 实例,用于对多种编程语言进行词法分析。适合需要高效、统一语法高亮支持的 Web 插件开发者。

パッケージ
@ch4acko3/dsh-shiki
バージョン
0.1.1
ライセンス
MIT
最終更新
2026/08/21

インストール

$npx -p @deepseek-ai/dsh dsh plugin --profile web add github:CH4ACKO3/dsh-render-engine#8401d60319cc256b73167e14460c12cec647db4f&path:packages/shiki

ドキュメント

README 全文を読む ↗

@ch4acko3/dsh-shiki

A browser-side Cordis service that owns one lazily created Shiki engine for DeepSeek Harness Web plugins.

export const inject = ['shiki']

export function apply(ctx) {
  const result = ctx.shiki.tokenize({
    code: 'const answer = 42',
    language: 'ts',
  })
  console.log(result.lines)
}

resolveLanguage() accepts common aliases, including patch for the bundled diff grammar. tokenize() requires a supported language and returns Shiki tokens using DSH's --shiki-* CSS variables. Its lineEndings field preserves the source's original LF, CRLF, or CR separators.