@jwiedeman/gtm-kit-next 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 +12 -4
package/README.md CHANGED
@@ -338,6 +338,21 @@ export default function App({ Component, pageProps }) {
338
338
 
339
339
  ---
340
340
 
341
+ ## Related Packages
342
+
343
+ - **Core**: [@jwiedeman/gtm-kit](https://www.npmjs.com/package/@jwiedeman/gtm-kit) (required)
344
+ - **React**: [@jwiedeman/gtm-kit-react](https://www.npmjs.com/package/@jwiedeman/gtm-kit-react)
345
+
346
+ ---
347
+
348
+ ## Support
349
+
350
+ **Have a question, found a bug, or need help?**
351
+
352
+ [Open an issue on GitHub](https://github.com/jwiedeman/GTM-Kit/issues) — we're actively maintaining this project and respond quickly.
353
+
354
+ ---
355
+
341
356
  ## License
342
357
 
343
358
  MIT
package/package.json CHANGED
@@ -1,21 +1,29 @@
1
1
  {
2
2
  "name": "@jwiedeman/gtm-kit-next",
3
- "version": "1.1.4",
4
- "description": "Next.js App Router helpers for GTM Kit - Google Tag Manager integration.",
3
+ "version": "1.1.6",
4
+ "description": "Next.js App Router helpers for GTM Kit - Google Tag Manager integration with Server Components support.",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/jwiedeman/GTM-Kit.git",
8
8
  "directory": "packages/next"
9
9
  },
10
+ "homepage": "https://github.com/jwiedeman/GTM-Kit/tree/main/packages/next#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
  "nextjs",
15
19
  "next",
16
- "app-router"
20
+ "app-router",
21
+ "server-components",
22
+ "analytics",
23
+ "tracking"
17
24
  ],
18
25
  "license": "MIT",
26
+ "sideEffects": false,
19
27
  "publishConfig": {
20
28
  "access": "public"
21
29
  },
@@ -41,7 +49,7 @@
41
49
  "typecheck": "tsc --noEmit"
42
50
  },
43
51
  "dependencies": {
44
- "@jwiedeman/gtm-kit": "^1.1.4"
52
+ "@jwiedeman/gtm-kit": "^1.0.0"
45
53
  },
46
54
  "peerDependencies": {
47
55
  "next": "^13.4.0 || ^14.0.0 || ^15.0.0",