This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import * as TOML from "@iarna/toml"; | |
| import { readFileSync } from "fs"; | |
| import path from "path"; | |
| import spdxSatisfies from "spdx-satisfies"; | |
| /** | |
| * ライセンス情報の型定義 | |
| */ | |
| export interface LicenseInfo { | |
| name: string; |