@jwiedeman/gtm-kit-nuxt 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.
- package/README.md +15 -0
- package/package.json +13 -5
package/README.md
CHANGED
|
@@ -308,6 +308,21 @@ export default defineNuxtPlugin((nuxtApp) => {
|
|
|
308
308
|
|
|
309
309
|
---
|
|
310
310
|
|
|
311
|
+
## Related Packages
|
|
312
|
+
|
|
313
|
+
- **Core**: [@jwiedeman/gtm-kit](https://www.npmjs.com/package/@jwiedeman/gtm-kit) (required)
|
|
314
|
+
- **Vue 3**: [@jwiedeman/gtm-kit-vue](https://www.npmjs.com/package/@jwiedeman/gtm-kit-vue)
|
|
315
|
+
|
|
316
|
+
---
|
|
317
|
+
|
|
318
|
+
## Support
|
|
319
|
+
|
|
320
|
+
**Have a question, found a bug, or need help?**
|
|
321
|
+
|
|
322
|
+
[Open an issue on GitHub](https://github.com/jwiedeman/GTM-Kit/issues) — we're actively maintaining this project and respond quickly.
|
|
323
|
+
|
|
324
|
+
---
|
|
325
|
+
|
|
311
326
|
## License
|
|
312
327
|
|
|
313
328
|
MIT
|
package/package.json
CHANGED
|
@@ -1,21 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@jwiedeman/gtm-kit-nuxt",
|
|
3
|
-
"version": "1.1.
|
|
4
|
-
"description": "Nuxt 3 module for GTM Kit - Google Tag Manager integration with auto page tracking.",
|
|
3
|
+
"version": "1.1.6",
|
|
4
|
+
"description": "Nuxt 3 module for GTM Kit - Google Tag Manager integration with auto page tracking and runtime config.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/jwiedeman/GTM-Kit.git",
|
|
8
8
|
"directory": "packages/nuxt"
|
|
9
9
|
},
|
|
10
|
+
"homepage": "https://github.com/jwiedeman/GTM-Kit/tree/main/packages/nuxt#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
|
"nuxt",
|
|
15
19
|
"nuxt3",
|
|
16
|
-
"module"
|
|
20
|
+
"module",
|
|
21
|
+
"auto-tracking",
|
|
22
|
+
"analytics",
|
|
23
|
+
"ssr"
|
|
17
24
|
],
|
|
18
25
|
"license": "MIT",
|
|
26
|
+
"sideEffects": false,
|
|
19
27
|
"publishConfig": {
|
|
20
28
|
"access": "public"
|
|
21
29
|
},
|
|
@@ -41,8 +49,8 @@
|
|
|
41
49
|
"typecheck": "tsc --noEmit"
|
|
42
50
|
},
|
|
43
51
|
"dependencies": {
|
|
44
|
-
"@jwiedeman/gtm-kit": "^1.
|
|
45
|
-
"@jwiedeman/gtm-kit-vue": "^1.
|
|
52
|
+
"@jwiedeman/gtm-kit": "^1.0.0",
|
|
53
|
+
"@jwiedeman/gtm-kit-vue": "^1.0.0"
|
|
46
54
|
},
|
|
47
55
|
"peerDependencies": {
|
|
48
56
|
"nuxt": "^3.0.0",
|