Skip to content

Commit 67b5085

Browse files
committed
chore(marketplace): declare Node engines + drop obsolete COPYRIGHT_NOTICE
Preparing for submission to market.strapi.io. Two small alignments on top of the existing (already compliant) metadata: - package.json * engines: declared node >=18 <=22 and npm >=6 to match the Strapi 5 compatibility matrix. Marketplace reviewers flag missing engines because installs on unsupported Node versions silently misbehave. * files: removed COPYRIGHT_NOTICE.txt so the published tarball no longer ships a file that does not exist in the source tree. - COPYRIGHT_NOTICE.txt: removed. It was a leftover metadata file from when LICENSE carried the 'ADDITIONAL CONDITION' clause. With the LICENSE now being the canonical SPDX MIT text, the separate notice file only adds confusion — the source of truth is singular. No runtime or public-API change. Both `strapi-plugin build` and `strapi-plugin verify` pass.
1 parent cec459f commit 67b5085

2 files changed

Lines changed: 5 additions & 14 deletions

File tree

COPYRIGHT_NOTICE.txt

Lines changed: 0 additions & 13 deletions
This file was deleted.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,13 @@
3535
"strapi-server.js",
3636
"README.md",
3737
"LICENSE",
38-
"COPYRIGHT_NOTICE.txt",
38+
"CHANGELOG.md",
3939
"pics"
4040
],
41+
"engines": {
42+
"node": ">=18.0.0 <=22.x.x",
43+
"npm": ">=6.0.0"
44+
},
4145
"scripts": {
4246
"build": "strapi-plugin build",
4347
"watch": "strapi-plugin watch",

0 commit comments

Comments
 (0)