@coherent.js/profiler 1.0.0-beta.3 → 1.0.0-beta.5

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.
Files changed (2) hide show
  1. package/README.md +16 -0
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -8,6 +8,22 @@ Advanced performance monitoring and profiling tools for Coherent.js applications
8
8
  npm install @coherent.js/profiler
9
9
  ```
10
10
 
11
+
12
+ ## Exports
13
+
14
+ Performance profiling tools
15
+
16
+ ### Modular Imports (Tree-Shakable)
17
+
18
+ - Profiler utilities: `@coherent.js/profiler`
19
+
20
+ ### Example Usage
21
+
22
+ ```javascript
23
+ import { createProfiler } from '@coherent.js/profiler';
24
+ ```
25
+
26
+ > **Note**: All exports are tree-shakable. Import only what you need for optimal bundle size.
11
27
  ## Usage
12
28
 
13
29
  ### Basic Profiling
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coherent.js/profiler",
3
- "version": "1.0.0-beta.3",
3
+ "version": "1.0.0-beta.5",
4
4
  "description": "Performance profiling and monitoring tools for Coherent.js applications",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -36,6 +36,7 @@
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
+ "sideEffects": false,
39
40
  "scripts": {
40
41
  "build": "node build.mjs",
41
42
  "test": "vitest",