callograph 0.0.6 → 0.0.7

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 +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -21,7 +21,7 @@ Callograph provides structural visibility into function relationships and propag
21
21
 
22
22
  ---
23
23
 
24
- ## Core Capabilities (v0.0.6)
24
+ ## Core Capabilities (v0.0.7)
25
25
 
26
26
  ### 1. Call Graph Construction
27
27
 
@@ -231,7 +231,7 @@ It prioritizes:
231
231
 
232
232
  ---
233
233
 
234
- ## Limitations (v0.0.6)
234
+ ## Limitations (v0.0.7)
235
235
 
236
236
  * Dynamic runtime dispatch cannot always be resolved.
237
237
  * Higher-order functions are partially supported.
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "callograph",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "description": "TypeScript call graph and side-effect analyzer.",
5
5
  "license": "MIT",
6
6
  "type": "module",
7
7
  "main": "./dist/index.cjs",
8
- "module": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
9
  "types": "./dist/index.d.ts",
10
10
  "files": [
11
11
  "dist",