@jwiedeman/gtm-kit-react-legacy 1.1.4 → 1.1.6

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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +13 -4
package/README.md CHANGED
@@ -352,6 +352,21 @@ function Button() {
352
352
 
353
353
  ---
354
354
 
355
+ ## Related Packages
356
+
357
+ - **Core**: [@jwiedeman/gtm-kit](https://www.npmjs.com/package/@jwiedeman/gtm-kit) (required)
358
+ - **Modern React**: [@jwiedeman/gtm-kit-react](https://www.npmjs.com/package/@jwiedeman/gtm-kit-react) (recommended for new projects with hooks)
359
+
360
+ ---
361
+
362
+ ## Support
363
+
364
+ **Have a question, found a bug, or need help?**
365
+
366
+ [Open an issue on GitHub](https://github.com/jwiedeman/GTM-Kit/issues) — we're actively maintaining this project and respond quickly.
367
+
368
+ ---
369
+
355
370
  ## License
356
371
 
357
372
  MIT
package/package.json CHANGED
@@ -1,20 +1,29 @@
1
1
  {
2
2
  "name": "@jwiedeman/gtm-kit-react-legacy",
3
- "version": "1.1.4",
4
- "description": "Legacy React HOC adapter for GTM Kit - Google Tag Manager integration.",
3
+ "version": "1.1.6",
4
+ "description": "Legacy React HOC adapter for GTM Kit - Google Tag Manager integration. For class components, supports React 16+.",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/jwiedeman/GTM-Kit.git",
8
8
  "directory": "packages/react-legacy"
9
9
  },
10
+ "homepage": "https://github.com/jwiedeman/GTM-Kit/tree/main/packages/react-legacy#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/jwiedeman/GTM-Kit/issues"
13
+ },
10
14
  "author": "jwiedeman",
11
15
  "keywords": [
12
16
  "gtm",
13
17
  "google-tag-manager",
14
18
  "react",
15
- "hoc"
19
+ "hoc",
20
+ "higher-order-component",
21
+ "class-components",
22
+ "legacy",
23
+ "analytics"
16
24
  ],
17
25
  "license": "MIT",
26
+ "sideEffects": false,
18
27
  "publishConfig": {
19
28
  "access": "public"
20
29
  },
@@ -40,7 +49,7 @@
40
49
  "typecheck": "tsc --noEmit"
41
50
  },
42
51
  "dependencies": {
43
- "@jwiedeman/gtm-kit": "^1.1.4"
52
+ "@jwiedeman/gtm-kit": "^1.0.0"
44
53
  },
45
54
  "peerDependencies": {
46
55
  "react": "^16.0.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"