@power-seo/tracking 1.0.4 → 1.0.11
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/LICENSE +21 -0
- package/README.md +247 -246
- package/dist/index.cjs +49 -14
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +13 -3
- package/dist/index.js.map +1 -1
- package/dist/react.cjs +45 -22
- package/dist/react.cjs.map +1 -1
- package/dist/react.js +5 -5
- package/dist/react.js.map +1 -1
- package/package.json +44 -27
package/package.json
CHANGED
|
@@ -1,7 +1,29 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@power-seo/tracking",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.11",
|
|
4
4
|
"description": "Analytics platform integration with script builders, consent management, and React components",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"seo",
|
|
7
|
+
"analytics",
|
|
8
|
+
"ga4",
|
|
9
|
+
"google-analytics",
|
|
10
|
+
"clarity",
|
|
11
|
+
"microsoft-clarity",
|
|
12
|
+
"posthog",
|
|
13
|
+
"plausible",
|
|
14
|
+
"fathom",
|
|
15
|
+
"tracking",
|
|
16
|
+
"gdpr",
|
|
17
|
+
"consent-management",
|
|
18
|
+
"cookie-consent",
|
|
19
|
+
"consent",
|
|
20
|
+
"react",
|
|
21
|
+
"nextjs",
|
|
22
|
+
"privacy",
|
|
23
|
+
"script-loader",
|
|
24
|
+
"gdpr-compliance",
|
|
25
|
+
"typescript"
|
|
26
|
+
],
|
|
5
27
|
"license": "MIT",
|
|
6
28
|
"type": "module",
|
|
7
29
|
"exports": {
|
|
@@ -22,16 +44,6 @@
|
|
|
22
44
|
"files": [
|
|
23
45
|
"dist"
|
|
24
46
|
],
|
|
25
|
-
"scripts": {
|
|
26
|
-
"build": "tsup",
|
|
27
|
-
"dev": "tsup --watch",
|
|
28
|
-
"test": "vitest run",
|
|
29
|
-
"test:watch": "vitest",
|
|
30
|
-
"typecheck": "tsc --noEmit",
|
|
31
|
-
"lint": "eslint src/",
|
|
32
|
-
"lint:fix": "eslint src/ --fix",
|
|
33
|
-
"clean": "rimraf dist"
|
|
34
|
-
},
|
|
35
47
|
"peerDependencies": {
|
|
36
48
|
"react": "^18.0.0 || ^19.0.0"
|
|
37
49
|
},
|
|
@@ -42,28 +54,15 @@
|
|
|
42
54
|
},
|
|
43
55
|
"devDependencies": {
|
|
44
56
|
"@testing-library/react": "^16.0.0",
|
|
45
|
-
"@types/react": "^19.
|
|
57
|
+
"@types/react": "^19.2.14",
|
|
46
58
|
"jsdom": "^25.0.0",
|
|
47
59
|
"react": "^19.0.0",
|
|
48
60
|
"react-dom": "^19.0.0",
|
|
49
|
-
"rimraf": "^6.
|
|
61
|
+
"rimraf": "^6.1.3",
|
|
50
62
|
"tsup": "^8.3.0",
|
|
51
63
|
"typescript": "^5.7.0",
|
|
52
64
|
"vitest": "^2.1.0"
|
|
53
65
|
},
|
|
54
|
-
"keywords": [
|
|
55
|
-
"seo",
|
|
56
|
-
"analytics",
|
|
57
|
-
"ga4",
|
|
58
|
-
"clarity",
|
|
59
|
-
"posthog",
|
|
60
|
-
"plausible",
|
|
61
|
-
"fathom",
|
|
62
|
-
"tracking",
|
|
63
|
-
"consent",
|
|
64
|
-
"react",
|
|
65
|
-
"typescript"
|
|
66
|
-
],
|
|
67
66
|
"sideEffects": false,
|
|
68
67
|
"author": "CyberCraft Bangladesh <info@ccbd.dev>",
|
|
69
68
|
"repository": {
|
|
@@ -73,5 +72,23 @@
|
|
|
73
72
|
},
|
|
74
73
|
"publishConfig": {
|
|
75
74
|
"access": "public"
|
|
75
|
+
},
|
|
76
|
+
"bugs": {
|
|
77
|
+
"url": "https://github.com/CyberCraftBD/power-seo/issues"
|
|
78
|
+
},
|
|
79
|
+
"homepage": "https://github.com/CyberCraftBD/power-seo/tree/main/packages/tracking#readme",
|
|
80
|
+
"funding": {
|
|
81
|
+
"type": "github",
|
|
82
|
+
"url": "https://github.com/sponsors/cybercraftbd"
|
|
83
|
+
},
|
|
84
|
+
"scripts": {
|
|
85
|
+
"build": "tsup",
|
|
86
|
+
"dev": "tsup --watch",
|
|
87
|
+
"test": "vitest run",
|
|
88
|
+
"test:watch": "vitest",
|
|
89
|
+
"typecheck": "tsc --noEmit",
|
|
90
|
+
"lint": "eslint src/",
|
|
91
|
+
"lint:fix": "eslint src/ --fix",
|
|
92
|
+
"clean": "rimraf dist"
|
|
76
93
|
}
|
|
77
|
-
}
|
|
94
|
+
}
|