mirror of
https://github.com/vrabe/obsidian-cjk-count.git
synced 2026-07-22 05:49:45 +00:00
27 lines
737 B
JSON
27 lines
737 B
JSON
{
|
|
"name": "obsidian-cjk-count",
|
|
"version": "1.1.1",
|
|
"description": "A word count Obsidian plugin that only counts Chinese, Japanese and Korean (CJK) characters.",
|
|
"main": "main.js",
|
|
"type": "module",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "node esbuild.config.js",
|
|
"build": "node esbuild.config.js production",
|
|
"version": "node version-bump.js && git add manifest.json versions.json",
|
|
"format": "prettier -w --cache ."
|
|
},
|
|
"keywords": [],
|
|
"author": {
|
|
"name": "vrabe",
|
|
"email": "git@vrabe.tw",
|
|
"url": "https://github.com/vrabe"
|
|
},
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"cjk-regex-compact": "^0.1.0",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "^1.8.7",
|
|
"prettier": "^3.5.3"
|
|
}
|
|
}
|