@piyoraik/ffxiv-lodestone-character-lookup 1.0.2 → 1.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +2 -3
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -17,8 +17,7 @@ FFXIV の Lodestone を使って、以下を行うための共通ライブラリ
17
17
  yarn add @piyoraik/ffxiv-lodestone-character-lookup
18
18
  ```
19
19
 
20
- ## 最短の使い方(募集者 → Lodestone URL → クリア判定)
21
-
20
+ ## 使い方
22
21
  ```ts
23
22
  import {
24
23
  parseCreator,
@@ -59,7 +58,7 @@ console.log(result);
59
58
  | `parseCreator(creator)` | `{ name, world } \| undefined` | `Name @ World` を分解 |
60
59
  | `buildLodestoneSearchUrl(info)` | `string` | キャラクター検索URLを生成 |
61
60
  | `fetchTopCharacterUrl(searchUrl)` | `Promise<string \| undefined>` | 検索結果の先頭ヒットのキャラURLを取得 |
62
- | `buildAchievementCategoryUrl(characterUrl)` | `string \| undefined` | カテゴリ4のアチーブURLを生成 |
61
+ | `buildAchievementCategoryUrl(characterUrl)` | `string \| undefined` | カテゴリ4(レイド)のアチーブURLを生成 |
63
62
  | `fetchAchievementCategoryHtml(url)` | `Promise<string>` | アチーブHTMLを取得 |
64
63
  | `parseUltimateClearsFromAchievementHtml(html)` | `{ status, clears }` | 高難度(絶/零式)達成状況を抽出 |
65
64
  | `getHighEndAchievements()` | `HighEndAchievementDefinition[]` | 同梱定義(正式名/略称/種別)を取得 |
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@piyoraik/ffxiv-lodestone-character-lookup",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "FFXIV Lodestone character lookup (search → character URL) and high-end achievement checks",
5
5
  "license": "MIT",
6
6
  "author": "",
7
- "homepage": "",
7
+ "homepage": "https://github.com/piyoraik/ffxiv-lodestone-character-lookup",
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": ""
10
+ "url": "git+https://github.com/piyoraik/ffxiv-lodestone-character-lookup.git"
11
11
  },
12
12
  "type": "commonjs",
13
13
  "main": "dist/index.js",