@easbot/memory 0.2.0 → 0.2.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/package.json +21 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@easbot/memory",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "Memory management library for EASBOT ecosystem - 智能记忆管理库,支持混合搜索、中英文分词、增量索引",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.cjs",
|
|
@@ -14,23 +14,6 @@
|
|
|
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
|
-
},
|
|
34
17
|
"keywords": [
|
|
35
18
|
"ai",
|
|
36
19
|
"agent",
|
|
@@ -69,10 +52,10 @@
|
|
|
69
52
|
"better-sqlite3": "^12.9.0",
|
|
70
53
|
"jieba-wasm": "^2.4.0",
|
|
71
54
|
"xdg-basedir": "^5.1.0",
|
|
72
|
-
"@easbot/types": "
|
|
73
|
-
"@easbot/utils": "
|
|
74
|
-
"@easbot/local-model-sdk": "
|
|
75
|
-
"@easbot/ollama-sdk": "
|
|
55
|
+
"@easbot/types": "0.2.1",
|
|
56
|
+
"@easbot/utils": "0.2.1",
|
|
57
|
+
"@easbot/local-model-sdk": "0.2.1",
|
|
58
|
+
"@easbot/ollama-sdk": "0.2.1"
|
|
76
59
|
},
|
|
77
60
|
"devDependencies": {
|
|
78
61
|
"@types/node": "^22.17.0",
|
|
@@ -87,5 +70,20 @@
|
|
|
87
70
|
},
|
|
88
71
|
"publishConfig": {
|
|
89
72
|
"access": "public"
|
|
73
|
+
},
|
|
74
|
+
"scripts": {
|
|
75
|
+
"dev": "tsup --watch --env.NODE_ENV development",
|
|
76
|
+
"build": "tsup --env.NODE_ENV production",
|
|
77
|
+
"test": "vitest",
|
|
78
|
+
"test:run": "vitest run",
|
|
79
|
+
"lint": "biome check .",
|
|
80
|
+
"lint:fix": "biome check --write .",
|
|
81
|
+
"lint:report": "biome check --reporter=summary .",
|
|
82
|
+
"format": "biome format .",
|
|
83
|
+
"format:fix": "biome format --write .",
|
|
84
|
+
"type-check": "tsc --noEmit",
|
|
85
|
+
"clean": "npx rimraf dist node_modules",
|
|
86
|
+
"publish:npm": "bash scripts/publish.sh",
|
|
87
|
+
"publish:npm:win": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1"
|
|
90
88
|
}
|
|
91
|
-
}
|
|
89
|
+
}
|