@walkeros/web-destination-posthog 3.3.0-next-1776098542393
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 +308 -0
- package/dist/dev.d.mts +269 -0
- package/dist/dev.d.ts +269 -0
- package/dist/dev.js +1 -0
- package/dist/dev.js.map +1 -0
- package/dist/dev.mjs +1 -0
- package/dist/dev.mjs.map +1 -0
- package/dist/examples/index.d.mts +206 -0
- package/dist/examples/index.d.ts +206 -0
- package/dist/examples/index.js +14439 -0
- package/dist/examples/index.mjs +14417 -0
- package/dist/index.browser.js +1 -0
- package/dist/index.d.mts +112 -0
- package/dist/index.d.ts +112 -0
- package/dist/index.es5.js +1 -0
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1 -0
- package/dist/index.mjs.map +1 -0
- package/dist/walkerOS.json +1096 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@walkeros/web-destination-posthog",
|
|
3
|
+
"description": "PostHog web destination for walkerOS (product analytics, session replay, feature flags, surveys)",
|
|
4
|
+
"version": "3.3.0-next-1776098542393",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./examples": {
|
|
16
|
+
"types": "./dist/examples/index.d.ts",
|
|
17
|
+
"import": "./dist/examples/index.mjs",
|
|
18
|
+
"require": "./dist/examples/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./dev": {
|
|
21
|
+
"types": "./dist/dev.d.ts",
|
|
22
|
+
"import": "./dist/dev.mjs",
|
|
23
|
+
"require": "./dist/dev.js"
|
|
24
|
+
},
|
|
25
|
+
"./walkerOS.json": "./dist/walkerOS.json"
|
|
26
|
+
},
|
|
27
|
+
"files": [
|
|
28
|
+
"dist/**"
|
|
29
|
+
],
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "tsup --silent",
|
|
32
|
+
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist",
|
|
33
|
+
"dev": "jest --watchAll --colors",
|
|
34
|
+
"typecheck": "tsc --noEmit",
|
|
35
|
+
"lint": "eslint \"**/*.ts*\"",
|
|
36
|
+
"test": "jest",
|
|
37
|
+
"update": "npx npm-check-updates -u && npm update"
|
|
38
|
+
},
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"posthog-js": "^1.367.0",
|
|
41
|
+
"@walkeros/web-core": "3.3.0-next-1776098542393"
|
|
42
|
+
},
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"@walkeros/collector": "3.3.0-next-1776098542393"
|
|
45
|
+
},
|
|
46
|
+
"repository": {
|
|
47
|
+
"url": "git+https://github.com/elbwalker/walkerOS.git",
|
|
48
|
+
"directory": "packages/web/destinations/posthog"
|
|
49
|
+
},
|
|
50
|
+
"author": "elbwalker <hello@elbwalker.com>",
|
|
51
|
+
"homepage": "https://github.com/elbwalker/walkerOS#readme",
|
|
52
|
+
"bugs": {
|
|
53
|
+
"url": "https://github.com/elbwalker/walkerOS/issues"
|
|
54
|
+
},
|
|
55
|
+
"walkerOS": {
|
|
56
|
+
"type": "destination",
|
|
57
|
+
"platform": [
|
|
58
|
+
"web"
|
|
59
|
+
],
|
|
60
|
+
"docs": "https://www.walkeros.io/docs/destinations/web/posthog"
|
|
61
|
+
},
|
|
62
|
+
"keywords": [
|
|
63
|
+
"walkerOS",
|
|
64
|
+
"walkerOS-destination",
|
|
65
|
+
"destination",
|
|
66
|
+
"web",
|
|
67
|
+
"posthog",
|
|
68
|
+
"product-analytics",
|
|
69
|
+
"session-replay",
|
|
70
|
+
"feature-flags",
|
|
71
|
+
"surveys"
|
|
72
|
+
],
|
|
73
|
+
"funding": [
|
|
74
|
+
{
|
|
75
|
+
"type": "GitHub Sponsors",
|
|
76
|
+
"url": "https://github.com/sponsors/elbwalker"
|
|
77
|
+
}
|
|
78
|
+
]
|
|
79
|
+
}
|