strapi-plugin-publish-media-validation 1.0.0 → 1.0.1

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "strapi-plugin-publish-media-validation",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Strapi v5 plugin that enforces required media fields at publish time — works around the known limitation where required: true on media fields is not validated on publish.",
5
5
  "license": "MIT",
6
6
  "keywords": [
@@ -40,7 +40,8 @@
40
40
  }
41
41
  },
42
42
  "peerDependencies": {
43
- "@strapi/strapi": ">=5.0.0"
43
+ "@strapi/strapi": ">=5.0.0",
44
+ "@strapi/utils": ">=5.0.0"
44
45
  },
45
46
  "devDependencies": {
46
47
  "@strapi/strapi": "5.44.0",
@@ -0,0 +1,9 @@
1
+ {
2
+ "extends": "../../../tsconfig.json",
3
+ "compilerOptions": {
4
+ "types": ["jest"],
5
+ "noEmit": true
6
+ },
7
+ "include": ["./**/*.ts"],
8
+ "exclude": ["../../../node_modules"]
9
+ }