@didnhdj/fnmap 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.
package/README.md CHANGED
@@ -17,13 +17,13 @@
17
17
  ## Installation
18
18
 
19
19
  ```bash
20
- npm install -g fnmap
20
+ npm install -g @didnhdj/fnmap
21
21
  ```
22
22
 
23
23
  Or use in your project:
24
24
 
25
25
  ```bash
26
- npm install --save-dev fnmap
26
+ npm install --save-dev @didnhdj/fnmap
27
27
  ```
28
28
 
29
29
  ## Quick Start
@@ -187,7 +187,7 @@ This automatically updates the `.fnmap` index when committing code.
187
187
  # .github/workflows/ci.yml
188
188
  - name: Generate Code Index
189
189
  run: |
190
- npm install -g fnmap
190
+ npm install -g @didnhdj/fnmap
191
191
  fnmap --dir src
192
192
  git diff --exit-code .fnmap || echo "Code index updated"
193
193
  ```
package/README_CN.md CHANGED
@@ -17,13 +17,13 @@
17
17
  ## 安装
18
18
 
19
19
  ```bash
20
- npm install -g fnmap
20
+ npm install -g @didnhdj/fnmap
21
21
  ```
22
22
 
23
23
  或在项目中使用:
24
24
 
25
25
  ```bash
26
- npm install --save-dev fnmap
26
+ npm install --save-dev @didnhdj/fnmap
27
27
  ```
28
28
 
29
29
  ## 快速开始
@@ -187,7 +187,7 @@ git add .fnmap
187
187
  # .github/workflows/ci.yml
188
188
  - name: Generate Code Index
189
189
  run: |
190
- npm install -g fnmap
190
+ npm install -g @didnhdj/fnmap
191
191
  fnmap --dir src
192
192
  git diff --exit-code .fnmap || echo "Code index updated"
193
193
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@didnhdj/fnmap",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "AI code indexing tool for analyzing JS/TS code structure and generating structured code maps to help AI understand code quickly",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",