@easbot/note 0.1.13 → 0.1.15

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@easbot/note",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "Note Knowledge Base - 非结构化记忆和文档知识库管理系统,支持混合搜索(向量+FTS+图)和 LLM 驱动的知识摄取",
5
5
  "type": "module",
6
6
  "main": "dist/index.cjs",
@@ -14,6 +14,23 @@
14
14
  },
15
15
  "./package.json": "./package.json"
16
16
  },
17
+ "scripts": {
18
+ "dev": "tsup --watch --env.NODE_ENV development",
19
+ "build": "tsup --env.NODE_ENV production",
20
+ "test": "vitest",
21
+ "test:run": "vitest run",
22
+ "lint": "biome check .",
23
+ "lint:fix": "biome check --write .",
24
+ "lint:report": "biome check --reporter=summary .",
25
+ "format": "biome format .",
26
+ "format:fix": "biome format --write .",
27
+ "type-check": "tsc --noEmit",
28
+ "clean": "npx rimraf dist node_modules",
29
+ "prepare": "echo norun",
30
+ "prepublishOnly": "pnpm build",
31
+ "publish:npm": "bash scripts/publish.sh",
32
+ "publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
33
+ },
17
34
  "keywords": [
18
35
  "easbot",
19
36
  "knowledge-base",
@@ -50,14 +67,14 @@
50
67
  "@ai-sdk/provider-utils": "^4.0.21",
51
68
  "@ai-sdk/openai-compatible": "2.0.37",
52
69
  "@ai-sdk/anthropic": "3.0.63",
70
+ "@easbot/local-model-sdk": "workspace:*",
71
+ "@easbot/ollama-sdk": "workspace:*",
72
+ "@easbot/types": "workspace:*",
73
+ "@easbot/utils": "workspace:*",
53
74
  "ai": "^6.0.136",
54
75
  "better-sqlite3": "^12.9.0",
55
76
  "jieba-wasm": "^2.4.0",
56
- "xdg-basedir": "^5.1.0",
57
- "@easbot/local-model-sdk": "0.1.13",
58
- "@easbot/ollama-sdk": "0.1.13",
59
- "@easbot/types": "0.1.13",
60
- "@easbot/utils": "0.1.13"
77
+ "xdg-basedir": "^5.1.0"
61
78
  },
62
79
  "devDependencies": {
63
80
  "@biomejs/biome": "^2.4.8",
@@ -74,20 +91,5 @@
74
91
  },
75
92
  "publishConfig": {
76
93
  "access": "public"
77
- },
78
- "scripts": {
79
- "dev": "tsup --watch --env.NODE_ENV development",
80
- "build": "tsup --env.NODE_ENV production",
81
- "test": "vitest",
82
- "test:run": "vitest run",
83
- "lint": "biome check .",
84
- "lint:fix": "biome check --write .",
85
- "lint:report": "biome check --reporter=summary .",
86
- "format": "biome format .",
87
- "format:fix": "biome format --write .",
88
- "type-check": "tsc --noEmit",
89
- "clean": "npx rimraf dist node_modules",
90
- "publish:npm": "bash scripts/publish.sh",
91
- "publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
92
94
  }
93
- }
95
+ }