feat: update package.json dependencies and enhance FileProjectData type documentation

This commit is contained in:
xiongxiao
2026-03-13 20:05:36 +08:00
committed by cnb
parent 642b08a00b
commit 6e31e24887
2 changed files with 5 additions and 3 deletions

View File

@@ -21,11 +21,11 @@
"@kevisual/dts": "^0.0.4", "@kevisual/dts": "^0.0.4",
"@kevisual/remote-app": "^0.0.7", "@kevisual/remote-app": "^0.0.7",
"@kevisual/router": "^0.1.1", "@kevisual/router": "^0.1.1",
"es-toolkit": "^1.45.1",
"eventemitter3": "^5.0.4",
"fast-glob": "^3.3.3", "fast-glob": "^3.3.3",
"meilisearch": "^0.55.0", "meilisearch": "^0.55.0",
"zod": "^4.3.6", "zod": "^4.3.6"
"es-toolkit": "^1.45.1",
"eventemitter3": "^5.0.4"
}, },
"dependencies": { "dependencies": {
"@parcel/watcher": "^2.5.6" "@parcel/watcher": "^2.5.6"

View File

@@ -20,6 +20,7 @@ export type FileProjectData = {
* 文件对应相关信息 * 文件对应相关信息
* *
* 具体文件路径 * 具体文件路径
* /workspace/projects/project-search/src/index.ts
*/ */
filepath: string; filepath: string;
content?: string; content?: string;
@@ -27,6 +28,7 @@ export type FileProjectData = {
size: number; size: number;
/** /**
* 项目路径,文件所在的项目路径,方便搜索结果展示和过滤 * 项目路径,文件所在的项目路径,方便搜索结果展示和过滤
* /workspace/projects/project-search
*/ */
projectPath: string; projectPath: string;
repo: string; repo: string;