From 5651a47112c9526be3809bfad19804675329ba1e Mon Sep 17 00:00:00 2001 From: Peter Oliver Date: Wed, 11 Feb 2026 17:22:31 +0000 Subject: [PATCH] Use correct SPDX licence code `GPL-3.0-or-later` in package.json The `license` field in `package.json` should contain an SPDX licence code. Value `GPL-3.0` is a deprecated alias for `GPL-3.0-only`, but the actual licence for this project is `GPL-3.0-or-later`. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2fa402b2..4622b18e 100644 --- a/package.json +++ b/package.json @@ -30,7 +30,7 @@ "cli" ], "author": "Jen-Chieh Shen", - "license": "GPL-3.0", + "license": "GPL-3.0-or-later", "dependencies": { "which": "^6.0.0", "yargs": "^17.0.0"