Skip to content

Instantly share code, notes, and snippets.

@nek9o
nek9o / licenses-script.ts
Last active April 3, 2026 10:27
rollup-plugin-licenseを使用したライセンス出力ロジック
import * as TOML from "@iarna/toml";
import { readFileSync } from "fs";
import path from "path";
import spdxSatisfies from "spdx-satisfies";
/**
* ライセンス情報の型定義
*/
export interface LicenseInfo {
name: string;