@codeflow-map/core 0.1.0 → 0.1.1

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 +8 -7
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
- # @flowmap/core
1
+ # @codeflow-map/core
2
2
 
3
3
  Language-agnostic call-graph analysis engine powered by [Tree-sitter](https://tree-sitter.github.io/tree-sitter/). Parse source files into a structured call graph with typed nodes, edges, and execution flows — entirely local, no LLM, no cloud.
4
4
 
5
- Used by the [FlowMap VS Code extension](https://github.com/devricky-codes/flowmap-vscode-extension) to render interactive call-flow diagrams.
5
+ Used by the [CallSight VS Code extension](https://github.com/devricky-codes/callsight-vscode-extension) to render interactive call-flow diagrams.
6
6
 
7
7
  ## Supported Languages
8
8
 
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "@codeflow-map/core",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Language-agnostic call-graph analysis engine powered by Tree-sitter. Parses TypeScript, JavaScript, TSX, JSX, Python, and Go source files into a structured call graph with flows.",
5
5
  "keywords": [
6
- "flowmap",
6
+ "callsight",
7
7
  "call-graph",
8
8
  "tree-sitter",
9
9
  "static-analysis",
@@ -18,10 +18,10 @@
18
18
  "author": "devricky-codes",
19
19
  "repository": {
20
20
  "type": "git",
21
- "url": "https://github.com/devricky-codes/flowmap-vscode-extension.git",
21
+ "url": "https://github.com/devricky-codes/callsight-vscode-extension.git",
22
22
  "directory": "packages/core"
23
23
  },
24
- "homepage": "https://github.com/devricky-codes/flowmap-vscode-extension#readme",
24
+ "homepage": "https://github.com/devricky-codes/callsight-vscode-extension#readme",
25
25
  "main": "dist/index.js",
26
26
  "types": "dist/index.d.ts",
27
27
  "files": [
@@ -35,14 +35,15 @@
35
35
  "access": "public"
36
36
  },
37
37
  "scripts": {
38
- "build": "../../node_modules/.bin/tsc",
39
- "watch": "../../node_modules/.bin/tsc --watch"
38
+ "build": "tsc",
39
+ "watch": "tsc --watch"
40
40
  },
41
41
  "dependencies": {
42
42
  "web-tree-sitter": "^0.24.4",
43
43
  "minimatch": "^9.0.3"
44
44
  },
45
45
  "devDependencies": {
46
- "@types/node": "^20.10.6"
46
+ "@types/node": "^20.10.6",
47
+ "typescript": "^5.3.3"
47
48
  }
48
49
  }