Skip to main content
Deno 2 is finally here πŸŽ‰οΈ
Learn more

bId

deno doc

build IME dictionary. Working in progress.
Created by Deno.

Language Support

  • Japanese

Dictionary Support

  • Google Japanese IME
  • Kotoeri

Dictionary Table

Name Split Type Can Set Genre Can Set Word class
Google Japanese IME TSV βœ” βœ”
Kotoeri CSV βœ— βœ—
Gboard TSV βœ— βœ—
Microsoft IME TSV βœ— βœ”

Feature

  • API
  • CLI
  • Web App

Build dictionary workflow sample

name: Build IME dictionary
on:
  pull_request:
    types: [closed]

jobs:
  upload:
    if: github.event.pull_request.merged == true
    runs-on: ubuntu-latest
    steps:
      - name: Checkout repository
        uses: actions/checkout@v2
      - name: Setup Deno
        uses: denolib/setup-deno@v2
        with:
          deno-version: v1.x
      - name: Output dictionary data
        run: |
          deno task build
      - name: Archive production artifacts
        uses: actions/upload-artifact@v2
        with:
          name: dictionary
          path: dist
          retention-days: 30