├── .dockerignore ├── .eslintrc.cjs ├── .github └── workflows │ ├── build.yml │ └── ci.yml ├── .gitignore ├── .gitmodules ├── .npmrc ├── Dockerfile ├── LICENSE ├── README.md ├── checksum ├── doc ├── customize.md ├── deploy.md └── develop.md ├── fonts.json ├── glog_patch ├── index.html ├── leveldb_patch ├── librime_patch ├── marisa_patch ├── opencc_patch ├── package.json ├── playwright.config.ts ├── public ├── LibreService.svg ├── apple-touch-icon.png └── favicon.ico ├── rime-config ├── lua │ └── date_translator.lua └── rime.lua ├── rollup.worker-config.js ├── schemas.json ├── scripts ├── build_lib.ts ├── build_native.ts ├── build_wasm.ts ├── checksum.ts ├── clean_font.ts ├── clean_ime.ts ├── download_font.ts ├── install_schemas.ts ├── update_submodule.ts └── util.ts ├── src ├── App.vue ├── components │ ├── MyAppearance.vue │ ├── MyBar.vue │ ├── MyDeployer.vue │ ├── MyEditor.vue │ ├── MyFont.vue │ ├── MyMenu.vue │ ├── MyPanel.vue │ ├── MyPlatform.vue │ ├── MyPwa.vue │ ├── MySimulator.vue │ └── micro-plum │ │ ├── DeployPane.vue │ │ ├── InstallPane.vue │ │ ├── ManifestPane.vue │ │ ├── MicroPlum.vue │ │ └── RepoLink.vue ├── control.ts ├── global.d.ts ├── locale.ts ├── main.css ├── main.ts ├── micro-plum.ts ├── router.ts ├── util.ts ├── views │ └── MainView.vue ├── vite-env.d.ts ├── worker.ts └── workerAPI.ts ├── test-device └── test-ios.spec.ts ├── test ├── test-advanced.spec.ts ├── test-array30.spec.ts ├── test-basic.spec.ts ├── test-bopomofo.spec.ts ├── test-bopomofo_express.spec.ts ├── test-cangjie5.spec.ts ├── test-cangjie5_express.spec.ts ├── test-combo_pinyin.spec.ts ├── test-combo_pinyin_10.spec.ts ├── test-combo_pinyin_8.spec.ts ├── test-combo_pinyin_9.spec.ts ├── test-double_pinyin.spec.ts ├── test-double_pinyin_abc.spec.ts ├── test-double_pinyin_flypy.spec.ts ├── test-double_pinyin_mspy.spec.ts ├── test-double_pinyin_pyjj.spec.ts ├── test-font.spec.ts ├── test-ipa_xsampa.spec.ts ├── test-ipa_yunlong.spec.ts ├── test-jyut6ping3.spec.ts ├── test-jyut6ping3_ipa.spec.ts ├── test-locale.spec.ts ├── test-luna_pinyin_fluency.spec.ts ├── test-micro-plum.spec.ts ├── test-panel.spec.ts ├── test-pinyin_simp.spec.ts ├── test-quick5.spec.ts ├── test-sampheng.spec.ts ├── test-scj6.spec.ts ├── test-soutzoe.spec.ts ├── test-sroke.spec.ts ├── test-stenotype.spec.ts ├── test-terra_pinyin.spec.ts ├── test-wubi86.spec.ts ├── test-wubi_pinyin.spec.ts ├── test-wubi_trad.spec.ts ├── test-wugniu.spec.ts ├── test-wugniu_lopha.spec.ts ├── test-zyenpheng.spec.ts └── util.ts ├── tsconfig.json ├── tsconfig.node.json ├── vite.config.ts └── wasm └── api.cpp /.dockerignore: -------------------------------------------------------------------------------- 1 | .vercel 2 | build 3 | dist 4 | doc 5 | node_modules 6 | -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/.npmrc -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/README.md -------------------------------------------------------------------------------- /checksum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/checksum -------------------------------------------------------------------------------- /doc/customize.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/doc/customize.md -------------------------------------------------------------------------------- /doc/deploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/doc/deploy.md -------------------------------------------------------------------------------- /doc/develop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/doc/develop.md -------------------------------------------------------------------------------- /fonts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/fonts.json -------------------------------------------------------------------------------- /glog_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/glog_patch -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/index.html -------------------------------------------------------------------------------- /leveldb_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/leveldb_patch -------------------------------------------------------------------------------- /librime_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/librime_patch -------------------------------------------------------------------------------- /marisa_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/marisa_patch -------------------------------------------------------------------------------- /opencc_patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/opencc_patch -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/package.json -------------------------------------------------------------------------------- /playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/playwright.config.ts -------------------------------------------------------------------------------- /public/LibreService.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/public/LibreService.svg -------------------------------------------------------------------------------- /public/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/public/apple-touch-icon.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /rime-config/lua/date_translator.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/rime-config/lua/date_translator.lua -------------------------------------------------------------------------------- /rime-config/rime.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rollup.worker-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/rollup.worker-config.js -------------------------------------------------------------------------------- /schemas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/schemas.json -------------------------------------------------------------------------------- /scripts/build_lib.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/build_lib.ts -------------------------------------------------------------------------------- /scripts/build_native.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/build_native.ts -------------------------------------------------------------------------------- /scripts/build_wasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/build_wasm.ts -------------------------------------------------------------------------------- /scripts/checksum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/checksum.ts -------------------------------------------------------------------------------- /scripts/clean_font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/clean_font.ts -------------------------------------------------------------------------------- /scripts/clean_ime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/clean_ime.ts -------------------------------------------------------------------------------- /scripts/download_font.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/download_font.ts -------------------------------------------------------------------------------- /scripts/install_schemas.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/install_schemas.ts -------------------------------------------------------------------------------- /scripts/update_submodule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/update_submodule.ts -------------------------------------------------------------------------------- /scripts/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/scripts/util.ts -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/components/MyAppearance.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MyAppearance.vue -------------------------------------------------------------------------------- /src/components/MyBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MyBar.vue -------------------------------------------------------------------------------- /src/components/MyDeployer.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MyDeployer.vue -------------------------------------------------------------------------------- /src/components/MyEditor.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MyEditor.vue -------------------------------------------------------------------------------- /src/components/MyFont.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MyFont.vue -------------------------------------------------------------------------------- /src/components/MyMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MyMenu.vue -------------------------------------------------------------------------------- /src/components/MyPanel.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MyPanel.vue -------------------------------------------------------------------------------- /src/components/MyPlatform.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MyPlatform.vue -------------------------------------------------------------------------------- /src/components/MyPwa.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MyPwa.vue -------------------------------------------------------------------------------- /src/components/MySimulator.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/MySimulator.vue -------------------------------------------------------------------------------- /src/components/micro-plum/DeployPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/micro-plum/DeployPane.vue -------------------------------------------------------------------------------- /src/components/micro-plum/InstallPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/micro-plum/InstallPane.vue -------------------------------------------------------------------------------- /src/components/micro-plum/ManifestPane.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/micro-plum/ManifestPane.vue -------------------------------------------------------------------------------- /src/components/micro-plum/MicroPlum.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/micro-plum/MicroPlum.vue -------------------------------------------------------------------------------- /src/components/micro-plum/RepoLink.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/components/micro-plum/RepoLink.vue -------------------------------------------------------------------------------- /src/control.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/control.ts -------------------------------------------------------------------------------- /src/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/global.d.ts -------------------------------------------------------------------------------- /src/locale.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/locale.ts -------------------------------------------------------------------------------- /src/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/main.css -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/micro-plum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/micro-plum.ts -------------------------------------------------------------------------------- /src/router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/router.ts -------------------------------------------------------------------------------- /src/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/util.ts -------------------------------------------------------------------------------- /src/views/MainView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/views/MainView.vue -------------------------------------------------------------------------------- /src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/vite-env.d.ts -------------------------------------------------------------------------------- /src/worker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/worker.ts -------------------------------------------------------------------------------- /src/workerAPI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/src/workerAPI.ts -------------------------------------------------------------------------------- /test-device/test-ios.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test-device/test-ios.spec.ts -------------------------------------------------------------------------------- /test/test-advanced.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-advanced.spec.ts -------------------------------------------------------------------------------- /test/test-array30.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-array30.spec.ts -------------------------------------------------------------------------------- /test/test-basic.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-basic.spec.ts -------------------------------------------------------------------------------- /test/test-bopomofo.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-bopomofo.spec.ts -------------------------------------------------------------------------------- /test/test-bopomofo_express.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-bopomofo_express.spec.ts -------------------------------------------------------------------------------- /test/test-cangjie5.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-cangjie5.spec.ts -------------------------------------------------------------------------------- /test/test-cangjie5_express.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-cangjie5_express.spec.ts -------------------------------------------------------------------------------- /test/test-combo_pinyin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-combo_pinyin.spec.ts -------------------------------------------------------------------------------- /test/test-combo_pinyin_10.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-combo_pinyin_10.spec.ts -------------------------------------------------------------------------------- /test/test-combo_pinyin_8.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-combo_pinyin_8.spec.ts -------------------------------------------------------------------------------- /test/test-combo_pinyin_9.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-combo_pinyin_9.spec.ts -------------------------------------------------------------------------------- /test/test-double_pinyin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-double_pinyin.spec.ts -------------------------------------------------------------------------------- /test/test-double_pinyin_abc.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-double_pinyin_abc.spec.ts -------------------------------------------------------------------------------- /test/test-double_pinyin_flypy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-double_pinyin_flypy.spec.ts -------------------------------------------------------------------------------- /test/test-double_pinyin_mspy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-double_pinyin_mspy.spec.ts -------------------------------------------------------------------------------- /test/test-double_pinyin_pyjj.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-double_pinyin_pyjj.spec.ts -------------------------------------------------------------------------------- /test/test-font.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-font.spec.ts -------------------------------------------------------------------------------- /test/test-ipa_xsampa.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-ipa_xsampa.spec.ts -------------------------------------------------------------------------------- /test/test-ipa_yunlong.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-ipa_yunlong.spec.ts -------------------------------------------------------------------------------- /test/test-jyut6ping3.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-jyut6ping3.spec.ts -------------------------------------------------------------------------------- /test/test-jyut6ping3_ipa.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-jyut6ping3_ipa.spec.ts -------------------------------------------------------------------------------- /test/test-locale.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-locale.spec.ts -------------------------------------------------------------------------------- /test/test-luna_pinyin_fluency.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-luna_pinyin_fluency.spec.ts -------------------------------------------------------------------------------- /test/test-micro-plum.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-micro-plum.spec.ts -------------------------------------------------------------------------------- /test/test-panel.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-panel.spec.ts -------------------------------------------------------------------------------- /test/test-pinyin_simp.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-pinyin_simp.spec.ts -------------------------------------------------------------------------------- /test/test-quick5.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-quick5.spec.ts -------------------------------------------------------------------------------- /test/test-sampheng.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-sampheng.spec.ts -------------------------------------------------------------------------------- /test/test-scj6.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-scj6.spec.ts -------------------------------------------------------------------------------- /test/test-soutzoe.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-soutzoe.spec.ts -------------------------------------------------------------------------------- /test/test-sroke.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-sroke.spec.ts -------------------------------------------------------------------------------- /test/test-stenotype.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-stenotype.spec.ts -------------------------------------------------------------------------------- /test/test-terra_pinyin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-terra_pinyin.spec.ts -------------------------------------------------------------------------------- /test/test-wubi86.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-wubi86.spec.ts -------------------------------------------------------------------------------- /test/test-wubi_pinyin.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-wubi_pinyin.spec.ts -------------------------------------------------------------------------------- /test/test-wubi_trad.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-wubi_trad.spec.ts -------------------------------------------------------------------------------- /test/test-wugniu.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-wugniu.spec.ts -------------------------------------------------------------------------------- /test/test-wugniu_lopha.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-wugniu_lopha.spec.ts -------------------------------------------------------------------------------- /test/test-zyenpheng.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/test-zyenpheng.spec.ts -------------------------------------------------------------------------------- /test/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/test/util.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/vite.config.ts -------------------------------------------------------------------------------- /wasm/api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LibreService/my_rime/HEAD/wasm/api.cpp --------------------------------------------------------------------------------