Update dependencies and bump version

This commit is contained in:
vrabe 2025-09-10 04:00:08 +08:00
parent 7f488b4cbd
commit 0fe4d27ab2
No known key found for this signature in database
GPG key ID: 6A5083B90DD60877
4 changed files with 20 additions and 19 deletions

View file

@ -1,7 +1,7 @@
{
"id": "cjk-count",
"name": "CJK Count",
"version": "1.1.1",
"version": "1.1.2",
"minAppVersion": "1.8.10",
"description": "A word counter that only counts Chinese, Japanese and Korean (CJK) characters.",
"author": "vrabe",

View file

@ -1,6 +1,6 @@
{
"name": "obsidian-cjk-count",
"version": "1.1.1",
"version": "1.1.2",
"description": "A word count Obsidian plugin that only counts Chinese, Japanese and Korean (CJK) characters.",
"main": "main.js",
"type": "module",
@ -19,9 +19,9 @@
},
"license": "MIT",
"devDependencies": {
"cjk-regex-compact": "^0.1.0",
"cjk-regex-compact": "^0.2.0",
"esbuild": "0.17.3",
"obsidian": "^1.8.7",
"prettier": "^3.5.3"
"prettier": "^3.6.2"
}
}

View file

@ -9,8 +9,8 @@ importers:
.:
devDependencies:
cjk-regex-compact:
specifier: ^0.1.0
version: 0.1.0
specifier: ^0.2.0
version: 0.2.0
esbuild:
specifier: 0.17.3
version: 0.17.3
@ -18,8 +18,8 @@ importers:
specifier: ^1.8.7
version: 1.8.7(@codemirror/state@6.5.2)(@codemirror/view@6.36.7)
prettier:
specifier: ^3.5.3
version: 3.5.3
specifier: ^3.6.2
version: 3.6.2
packages:
@ -167,14 +167,14 @@ packages:
'@types/codemirror@5.60.8':
resolution: {integrity: sha512-VjFgDF/eB+Aklcy15TtOTLQeMjTo07k7KAjql8OK5Dirr7a6sJY4T1uVBDuTVG9VEmn1uUsohOpYnVfgC6/jyw==}
'@types/estree@1.0.7':
resolution: {integrity: sha512-w28IoSUCJpidD/TGviZwwMJckNESJZXFu7NBZ5YJ4mEUnNraUn9Pm8HSZm/jDF1pDWYKspWE7oVphigUPRakIQ==}
'@types/estree@1.0.8':
resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==}
'@types/tern@0.23.9':
resolution: {integrity: sha512-ypzHFE/wBzh+BlH6rrBgS5I/Z7RD21pGhZ2rltb/+ZrVM1awdZwjx7hE5XfuYgHWk9uvV5HLZN3SloevCAp3Bw==}
cjk-regex-compact@0.1.0:
resolution: {integrity: sha512-ATnk7Qu9aulwZ942ObzRn3q4Chb91TwjKTA9ACwPUvlKFw7lkbYIGRe9t/iA32eJv3DNVErBF7GOKAUoa3bzmw==}
cjk-regex-compact@0.2.0:
resolution: {integrity: sha512-fymXq2fh3MM+ihxTJ1LxNzj972WSof/Qn3gF1ZGbkKpwsbfFTUYjHxmKR8STi3FyDdMMHuN9IKE18zU5ykvtdQ==}
esbuild@0.17.3:
resolution: {integrity: sha512-9n3AsBRe6sIyOc6kmoXg2ypCLgf3eZSraWFRpnkto+svt8cZNuKTkb1bhQcitBcvIqjNiK7K0J3KPmwGSfkA8g==}
@ -190,8 +190,8 @@ packages:
'@codemirror/state': ^6.0.0
'@codemirror/view': ^6.0.0
prettier@3.5.3:
resolution: {integrity: sha512-QQtaxnoDJeAkDvDKWCLiwIXkTgRhwYDEQCghU9Z6q03iyek/rxRh/2lC3HB7P8sWT2xC/y5JDctPLBIGzHKbhw==}
prettier@3.6.2:
resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==}
engines: {node: '>=14'}
hasBin: true
@ -285,13 +285,13 @@ snapshots:
dependencies:
'@types/tern': 0.23.9
'@types/estree@1.0.7': {}
'@types/estree@1.0.8': {}
'@types/tern@0.23.9':
dependencies:
'@types/estree': 1.0.7
'@types/estree': 1.0.8
cjk-regex-compact@0.1.0: {}
cjk-regex-compact@0.2.0: {}
esbuild@0.17.3:
optionalDependencies:
@ -327,7 +327,7 @@ snapshots:
'@types/codemirror': 5.60.8
moment: 2.29.4
prettier@3.5.3: {}
prettier@3.6.2: {}
style-mod@4.1.2: {}

View file

@ -1,5 +1,6 @@
{
"1.0.0": "1.8.10",
"1.1.0": "1.8.10",
"1.1.1": "1.8.10"
"1.1.1": "1.8.10",
"1.1.2": "1.8.10"
}