@prism-analytics/browser 0.0.1 → 0.0.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/README.md +5 -5
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @prism-analytics/browser
|
|
2
2
|
|
|
3
|
-
Browser SDK for [Prism](https://prism-analytics.vercel.app) — page views, custom events, error tracking, and privacy-first collection. Built on `@prism-analytics/core`.
|
|
3
|
+
Browser SDK for [Prism](https://prism-analytics-docs.vercel.app) — page views, custom events, error tracking, and privacy-first collection. Built on `@prism-analytics/core`.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@prism-analytics/browser)
|
|
6
6
|
[](../../LICENSE)
|
|
@@ -30,10 +30,10 @@ prism.track("checkout_started", { value: 42 });
|
|
|
30
30
|
|
|
31
31
|
## Docs
|
|
32
32
|
|
|
33
|
-
- [Quickstart](https://prism-analytics.vercel.app/docs/start/javascript-sdk)
|
|
34
|
-
- [Capturing events](https://prism-analytics.vercel.app/docs/features/capturing-events)
|
|
35
|
-
- [Page analytics](https://prism-analytics.vercel.app/docs/features/page-analytics)
|
|
36
|
-
- [Error tracking](https://prism-analytics.vercel.app/docs/features/error-tracking)
|
|
33
|
+
- [Quickstart](https://prism-analytics-docs.vercel.app/docs/start/javascript-sdk)
|
|
34
|
+
- [Capturing events](https://prism-analytics-docs.vercel.app/docs/features/capturing-events)
|
|
35
|
+
- [Page analytics](https://prism-analytics-docs.vercel.app/docs/features/page-analytics)
|
|
36
|
+
- [Error tracking](https://prism-analytics-docs.vercel.app/docs/features/error-tracking)
|
|
37
37
|
|
|
38
38
|
## License
|
|
39
39
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@prism-analytics/browser",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "tsup src/index.ts --format cjs,esm --dts",
|
|
@@ -36,5 +36,6 @@
|
|
|
36
36
|
},
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
|
-
}
|
|
39
|
+
},
|
|
40
|
+
"description": "Prism Analytics SDK for the browser"
|
|
40
41
|
}
|