@stacksee/analytics 0.13.0 → 0.13.2
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/dist/_commonjsHelpers-DaMA6jEr.js +8 -0
- package/dist/adapters/server/server-analytics.d.ts +2 -2
- package/dist/{bento-node-sdk.esm-CWEAoj97.js → bento-node-sdk.esm-CT4oS3Kp.js} +1 -1
- package/dist/providers/bento/server.d.ts +2 -2
- package/dist/providers/client.js +8 -7
- package/dist/providers/emitkit/server.d.ts +7 -2
- package/dist/providers/pirsch/client.d.ts +5 -0
- package/dist/providers/pirsch/server.d.ts +40 -6
- package/dist/providers/server.js +372 -295
- package/dist/server.js +41 -38
- package/dist/web-D-ZwlgeQ.js +2034 -0
- package/package.json +5 -2
- package/dist/_commonjsHelpers-B4e78b8K.js +0 -28
- package/dist/axios-0_CwElpL.js +0 -1820
- package/dist/index-zS7gy63J.js +0 -829
- package/dist/web-imCcOhDC.js +0 -220
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stacksee/analytics",
|
|
3
|
-
"version": "0.13.
|
|
3
|
+
"version": "0.13.2",
|
|
4
4
|
"description": "A highly typed, provider-agnostic analytics library for TypeScript applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -56,6 +56,7 @@
|
|
|
56
56
|
"@vitest/coverage-v8": "3.1.4",
|
|
57
57
|
"globals": "^15.8.0",
|
|
58
58
|
"jsdom": "^26.1.0",
|
|
59
|
+
"playwright": "^1.58.2",
|
|
59
60
|
"prettier": "^3.3.3",
|
|
60
61
|
"typescript": "~5.5.3",
|
|
61
62
|
"vite": "^6.3.5",
|
|
@@ -76,12 +77,14 @@
|
|
|
76
77
|
"scripts": {
|
|
77
78
|
"test": "vitest run",
|
|
78
79
|
"test:watch": "vitest",
|
|
80
|
+
"test:e2e": "node e2e/pirsch.test.js",
|
|
81
|
+
"test:e2e:server": "node e2e/test-app/server.js",
|
|
79
82
|
"build": "vite build",
|
|
80
83
|
"dev": "pnpm --filter @stacksee/docs dev",
|
|
81
84
|
"build:docs": "pnpm --filter @stacksee/docs build",
|
|
82
85
|
"deploy": "npm publish",
|
|
83
86
|
"typecheck": "tsc --noEmit",
|
|
84
|
-
"ci:publish": "pnpm build && changeset publish",
|
|
87
|
+
"ci:publish": "pnpm build && changeset publish --provenance",
|
|
85
88
|
"lint": "biome lint .",
|
|
86
89
|
"format": "biome format --write .",
|
|
87
90
|
"biome": "biome"
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
var u = typeof globalThis < "u" ? globalThis : typeof window < "u" ? window : typeof global < "u" ? global : typeof self < "u" ? self : {};
|
|
2
|
-
function f(e) {
|
|
3
|
-
return e && e.__esModule && Object.prototype.hasOwnProperty.call(e, "default") ? e.default : e;
|
|
4
|
-
}
|
|
5
|
-
function l(e) {
|
|
6
|
-
if (Object.prototype.hasOwnProperty.call(e, "__esModule")) return e;
|
|
7
|
-
var r = e.default;
|
|
8
|
-
if (typeof r == "function") {
|
|
9
|
-
var t = function o() {
|
|
10
|
-
return this instanceof o ? Reflect.construct(r, arguments, this.constructor) : r.apply(this, arguments);
|
|
11
|
-
};
|
|
12
|
-
t.prototype = r.prototype;
|
|
13
|
-
} else t = {};
|
|
14
|
-
return Object.defineProperty(t, "__esModule", { value: !0 }), Object.keys(e).forEach(function(o) {
|
|
15
|
-
var n = Object.getOwnPropertyDescriptor(e, o);
|
|
16
|
-
Object.defineProperty(t, o, n.get ? n : {
|
|
17
|
-
enumerable: !0,
|
|
18
|
-
get: function() {
|
|
19
|
-
return e[o];
|
|
20
|
-
}
|
|
21
|
-
});
|
|
22
|
-
}), t;
|
|
23
|
-
}
|
|
24
|
-
export {
|
|
25
|
-
l as a,
|
|
26
|
-
u as c,
|
|
27
|
-
f as g
|
|
28
|
-
};
|