@eworkbase/plugin-codegraph 0.1.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 ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "@eworkbase/plugin-codegraph",
3
+ "version": "0.1.0",
4
+ "description": "为工作区建立代码关系索引,帮助 AI 理解符号、引用和调用关系。可查看索引状态与待同步文件,手动同步代码变化或完整重建索引。",
5
+ "type": "module",
6
+ "exports": "./plugin.mjs",
7
+ "files": [
8
+ "plugin.mjs",
9
+ "ui"
10
+ ],
11
+ "engines": {
12
+ "node": ">=22"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "workbase": {
18
+ "id": "codegraph",
19
+ "title": "CodeGraph",
20
+ "tools": [
21
+ {
22
+ "id": "codegraph",
23
+ "label": "CodeGraph",
24
+ "category": "runtime",
25
+ "version": "1.5.0",
26
+ "runtimeId": "npm:@colbymchenry/codegraph",
27
+ "allowLowDownloads": true
28
+ }
29
+ ],
30
+ "description": "为工作区建立代码关系索引,帮助 AI 理解符号、引用和调用关系。可查看索引状态与待同步文件,手动同步代码变化或完整重建索引。",
31
+ "apiVersion": 1,
32
+ "workbaseVersion": "^0.4"
33
+ }
34
+ }