@jwiedeman/gtm-kit-cli 1.1.3 → 1.1.5

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 +17 -2
  2. package/package.json +12 -2
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # @jwiedeman/gtm-kit-cli
2
2
 
3
- [![CI](https://github.com/jwiedeman/react-gtm-kit/actions/workflows/ci.yml/badge.svg)](https://github.com/jwiedeman/react-gtm-kit/actions/workflows/ci.yml)
4
- [![Coverage](https://codecov.io/gh/jwiedeman/react-gtm-kit/graph/badge.svg?flag=cli)](https://codecov.io/gh/jwiedeman/react-gtm-kit)
3
+ [![CI](https://github.com/jwiedeman/GTM-Kit/actions/workflows/ci.yml/badge.svg)](https://github.com/jwiedeman/GTM-Kit/actions/workflows/ci.yml)
4
+ [![Coverage](https://codecov.io/gh/jwiedeman/GTM-Kit/graph/badge.svg?flag=cli)](https://codecov.io/gh/jwiedeman/GTM-Kit)
5
5
  [![npm version](https://img.shields.io/npm/v/@jwiedeman/gtm-kit-cli.svg)](https://www.npmjs.com/package/@jwiedeman/gtm-kit-cli)
6
6
  [![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue.svg)](https://www.typescriptlang.org/)
7
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
@@ -255,6 +255,21 @@ const code = generateCode({
255
255
 
256
256
  ---
257
257
 
258
+ ## Related Packages
259
+
260
+ - **Core**: [@jwiedeman/gtm-kit](https://www.npmjs.com/package/@jwiedeman/gtm-kit)
261
+ - **All Adapters**: See the [main repository](https://github.com/jwiedeman/GTM-Kit) for the full list
262
+
263
+ ---
264
+
265
+ ## Support
266
+
267
+ **Have a question, found a bug, or need help?**
268
+
269
+ [Open an issue on GitHub](https://github.com/jwiedeman/GTM-Kit/issues) — we're actively maintaining this project and respond quickly.
270
+
271
+ ---
272
+
258
273
  ## License
259
274
 
260
275
  MIT
package/package.json CHANGED
@@ -1,20 +1,29 @@
1
1
  {
2
2
  "name": "@jwiedeman/gtm-kit-cli",
3
- "version": "1.1.3",
3
+ "version": "1.1.5",
4
4
  "description": "CLI tool for easy GTM Kit setup - auto-detects your framework and installs everything you need.",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/jwiedeman/GTM-Kit.git",
8
8
  "directory": "packages/cli"
9
9
  },
10
+ "homepage": "https://github.com/jwiedeman/GTM-Kit/tree/main/packages/cli#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
  "cli",
15
- "setup"
19
+ "setup",
20
+ "scaffold",
21
+ "init",
22
+ "auto-detect",
23
+ "framework-detection"
16
24
  ],
17
25
  "license": "MIT",
26
+ "sideEffects": false,
18
27
  "publishConfig": {
19
28
  "access": "public"
20
29
  },
@@ -45,6 +54,7 @@
45
54
  },
46
55
  "dependencies": {},
47
56
  "devDependencies": {
57
+ "@types/node": "^20.11.30",
48
58
  "tslib": "^2.6.2"
49
59
  }
50
60
  }