@k-msg/analytics 0.14.0 → 0.16.0
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 +4 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@k-msg/analytics",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.16.0",
|
|
4
4
|
"packageManager": "bun@1.3.8",
|
|
5
5
|
"description": "Analytics and reporting engine for message tracking and insights",
|
|
6
6
|
"type": "module",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"access": "public"
|
|
19
19
|
},
|
|
20
20
|
"scripts": {
|
|
21
|
-
"build": "bun run build:esm && bun run build:cjs && bun run build:types",
|
|
21
|
+
"build": "bun run clean && bun run build:esm && bun run build:cjs && bun run build:types",
|
|
22
22
|
"build:esm": "bun build ./src/index.ts --outdir ./dist --format esm --minify --sourcemap --entry-naming '[name].mjs' --external 'bun:test'",
|
|
23
23
|
"build:cjs": "bun build ./src/index.ts --outdir ./dist --format cjs --minify --sourcemap --entry-naming '[name].js' --external 'bun:test'",
|
|
24
24
|
"build:types": "tsc",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"test:coverage": "bun test --coverage",
|
|
31
31
|
"test:watch": "bun test --watch",
|
|
32
32
|
"typecheck": "tsc --noEmit",
|
|
33
|
-
"clean": "rm -rf dist",
|
|
33
|
+
"clean": "rm -rf dist tsconfig.tsbuildinfo",
|
|
34
34
|
"pack": "bun pm pack",
|
|
35
35
|
"publish": "bun publish --access public"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"zod": "^4.0.14",
|
|
39
|
-
"@k-msg/messaging": "0.
|
|
39
|
+
"@k-msg/messaging": "0.16.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
42
|
"typescript": "^5.7.2",
|