@opkod-france/strapi-plugin-component-usage 2.0.0

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 ADDED
@@ -0,0 +1,98 @@
1
+ {
2
+ "name": "@opkod-france/strapi-plugin-component-usage",
3
+ "version": "2.0.0",
4
+ "description": "Track and manage Strapi component usage across content types with dependency visualization",
5
+ "keywords": [
6
+ "strapi",
7
+ "strapi-plugin",
8
+ "strapi-v5",
9
+ "component",
10
+ "component-usage",
11
+ "component-tracker",
12
+ "component-management",
13
+ "component-dependencies",
14
+ "dependency-tracking",
15
+ "dependency-graph",
16
+ "content-management",
17
+ "developer-tools"
18
+ ],
19
+ "license": "MIT",
20
+ "author": {
21
+ "name": "Opkod",
22
+ "email": "contact@opkod.io",
23
+ "url": "https://opkod.io"
24
+ },
25
+ "maintainers": [
26
+ {
27
+ "name": "Ayoub Hidri",
28
+ "email": "ayoub@opkod.io",
29
+ "url": "https://github.com/ayhid"
30
+ }
31
+ ],
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "https://github.com/opkod-france/strapi-plugin-component-usage.git"
35
+ },
36
+ "bugs": {
37
+ "url": "https://github.com/opkod-france/strapi-plugin-component-usage/issues"
38
+ },
39
+ "homepage": "https://github.com/opkod-france/strapi-plugin-component-usage#readme",
40
+ "exports": {
41
+ "./strapi-admin": {
42
+ "types": "./dist/admin/src/index.d.ts",
43
+ "source": "./admin/src/index.ts",
44
+ "import": "./dist/admin/index.mjs",
45
+ "require": "./dist/admin/index.js",
46
+ "default": "./dist/admin/index.js"
47
+ },
48
+ "./strapi-server": {
49
+ "types": "./dist/server/src/index.d.ts",
50
+ "source": "./server/src/index.ts",
51
+ "import": "./dist/server/index.mjs",
52
+ "require": "./dist/server/index.js",
53
+ "default": "./dist/server/index.js"
54
+ },
55
+ "./package.json": "./package.json"
56
+ },
57
+ "files": [
58
+ "dist/",
59
+ "assets/",
60
+ "strapi-server.js"
61
+ ],
62
+ "publishConfig": {
63
+ "access": "public"
64
+ },
65
+ "scripts": {
66
+ "build": "strapi-plugin build",
67
+ "watch": "strapi-plugin watch",
68
+ "verify": "strapi-plugin verify"
69
+ },
70
+ "dependencies": {
71
+ "@strapi/design-system": "^2.0.0",
72
+ "@strapi/icons": "^2.0.0",
73
+ "react-intl": "^6.0.0"
74
+ },
75
+ "devDependencies": {
76
+ "@strapi/sdk-plugin": "^5.0.0",
77
+ "@strapi/strapi": "^5.0.0",
78
+ "@strapi/typescript-utils": "^5.0.0",
79
+ "react": "^18.0.0",
80
+ "react-dom": "^18.0.0",
81
+ "react-router-dom": "^6.0.0",
82
+ "styled-components": "^6.0.0",
83
+ "typescript": "^5.0.0"
84
+ },
85
+ "peerDependencies": {
86
+ "@strapi/strapi": "^5.0.0",
87
+ "react": "^17.0.0 || ^18.0.0",
88
+ "react-dom": "^17.0.0 || ^18.0.0",
89
+ "react-router-dom": "^6.0.0",
90
+ "styled-components": "^6.0.0"
91
+ },
92
+ "strapi": {
93
+ "name": "component-usage",
94
+ "description": "Track component usage and dependencies across your Strapi content types",
95
+ "kind": "plugin",
96
+ "displayName": "Component Usage"
97
+ }
98
+ }
@@ -0,0 +1,3 @@
1
+ 'use strict';
2
+
3
+ module.exports = require('./dist/server/index.js');