@unisights/analytics 0.0.4 → 0.0.6

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/package.json CHANGED
@@ -1,10 +1,32 @@
1
1
  {
2
2
  "name": "@unisights/analytics",
3
3
  "description": "Unisights browser event tracking script",
4
- "version": "0.0.4",
4
+ "version": "0.0.6",
5
5
  "main": "dist/unisights.min.js",
6
6
  "module": "dist/unisights.min.js",
7
7
  "types": "dist/unisights.d.ts",
8
+ "keywords": [
9
+ "analytics",
10
+ "tracking",
11
+ "web-analytics",
12
+ "wasm",
13
+ "webassembly",
14
+ "rust",
15
+ "web-vitals",
16
+ "page-view",
17
+ "click-tracking",
18
+ "scroll-tracking",
19
+ "session-tracking",
20
+ "utm",
21
+ "spa",
22
+ "real-time",
23
+ "privacy",
24
+ "encryption",
25
+ "gdpr",
26
+ "browser",
27
+ "cdn",
28
+ "event-tracking"
29
+ ],
8
30
  "exports": {
9
31
  ".": {
10
32
  "import": "./dist/unisights.min.js",
@@ -16,13 +38,6 @@
16
38
  "email": "pradeeparul2@gmail.com",
17
39
  "url": "https://github.com/Pradeeparul2"
18
40
  },
19
- "scripts": {
20
- "build": "tsc && node build.mjs && cpx \"core/pkg/**/*\" dist/pkg",
21
- "dev:build": "tsc && esbuild src/unisights.ts --bundle --outfile=dist/unisights.js --format=esm --sourcemap --loader:.wasm=binary --define:process.env.NODE_ENV='\"development\"' && cpx \"core/pkg/**/*\" dist/pkg",
22
- "dev:watch": "node build.mjs --watch --define:process.env.NODE_ENV='\"development\"'",
23
- "serve": "live-server dist --no-browser --port=9005 --watch=dist --cors",
24
- "dev": "concurrently \"pnpm dev:watch\" \"pnpm serve\""
25
- },
26
41
  "dependencies": {
27
42
  "web-vitals": "^5.0.3"
28
43
  },
@@ -43,5 +58,12 @@
43
58
  "engines": {
44
59
  "browser": "*"
45
60
  },
46
- "license": "MIT"
47
- }
61
+ "license": "MIT",
62
+ "scripts": {
63
+ "build": "tsc && node build.mjs && cpx \"core/pkg/**/*\" dist/pkg",
64
+ "dev:build": "tsc && esbuild src/unisights.ts --bundle --outfile=dist/unisights.js --format=esm --sourcemap --loader:.wasm=binary --define:process.env.NODE_ENV='\"development\"' && cpx \"core/pkg/**/*\" dist/pkg",
65
+ "dev:watch": "node build.mjs --watch --define:process.env.NODE_ENV='\"development\"'",
66
+ "serve": "live-server dist --no-browser --port=9005 --watch=dist --cors",
67
+ "dev": "concurrently \"pnpm dev:watch\" \"pnpm serve\""
68
+ }
69
+ }