@danielzfliu/memory 1.0.2 → 2.0.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 CHANGED
@@ -1,62 +1,74 @@
1
- {
2
- "name": "@danielzfliu/memory",
3
- "version": "1.0.2",
4
- "description": "A local RAG system for storing, searching, and querying tagged text pieces using ChromaDB and Ollama",
5
- "main": "dist/index.js",
6
- "types": "dist/index.d.ts",
7
- "exports": {
8
- ".": {
9
- "types": "./dist/index.d.ts",
10
- "require": "./dist/index.js"
11
- }
12
- },
13
- "files": [
14
- "dist",
15
- "README.md",
16
- "LICENSE"
17
- ],
18
- "repository": {
19
- "type": "git",
20
- "url": "git+https://github.com/DanielZFLiu/memory.git"
21
- },
22
- "engines": {
23
- "node": ">=18"
24
- },
25
- "keywords": [
26
- "rag",
27
- "chromadb",
28
- "ollama",
29
- "vector-search",
30
- "embeddings",
31
- "local-ai"
32
- ],
33
- "scripts": {
34
- "build": "tsc",
35
- "dev": "tsx src/main.ts",
36
- "start": "node dist/main.js",
37
- "test": "vitest run",
38
- "test:watch": "vitest",
39
- "test:coverage": "vitest run --coverage",
40
- "prepublishOnly": "npm run build",
41
- "db": "chroma run --port 8000",
42
- "db:port": "node ./package_scripts/serve-chroma.js",
43
- "ollama": "ollama serve",
44
- "ollama:port": "node ./package_scripts/serve-ollama.js"
45
- },
46
- "license": "GPL-3.0",
47
- "dependencies": {
48
- "chromadb": "^1.9.2",
49
- "express": "^4.21.0",
50
- "ollama": "^0.5.11",
51
- "uuid": "^11.0.3"
52
- },
53
- "devDependencies": {
54
- "@types/express": "^5.0.0",
55
- "@types/supertest": "^6.0.3",
56
- "@types/uuid": "^10.0.0",
57
- "supertest": "^7.2.2",
58
- "tsx": "^4.19.0",
59
- "typescript": "^5.6.0",
60
- "vitest": "^4.0.18"
61
- }
62
- }
1
+ {
2
+ "name": "@danielzfliu/memory",
3
+ "version": "2.0.0",
4
+ "description": "A local MCP server and Node.js library for storing, searching, and querying tagged text pieces using ChromaDB and Ollama",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "require": "./dist/index.js"
11
+ }
12
+ },
13
+ "bin": {
14
+ "memory-mcp": "dist/main.js"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "README.md",
19
+ "LICENSE"
20
+ ],
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "git+https://github.com/DanielZFLiu/memory.git"
24
+ },
25
+ "engines": {
26
+ "node": ">=18"
27
+ },
28
+ "keywords": [
29
+ "mcp",
30
+ "model-context-protocol",
31
+ "rag",
32
+ "chromadb",
33
+ "ollama",
34
+ "vector-search",
35
+ "embeddings",
36
+ "local-ai"
37
+ ],
38
+ "scripts": {
39
+ "build": "tsc",
40
+ "dev": "tsx src/main.ts",
41
+ "dev:http": "tsx src/http-main.ts",
42
+ "start": "node dist/main.js",
43
+ "start:http": "node dist/http-main.js",
44
+ "test": "vitest run",
45
+ "test:watch": "vitest",
46
+ "test:coverage": "vitest run --coverage",
47
+ "docker:up": "docker compose up -d",
48
+ "docker:down": "docker compose down",
49
+ "docker:logs": "docker compose logs -f chromadb",
50
+ "prepublishOnly": "npm run build",
51
+ "db": "chroma run --port 8000",
52
+ "db:port": "node ./package_scripts/serve-chroma.js",
53
+ "ollama": "ollama serve",
54
+ "ollama:port": "node ./package_scripts/serve-ollama.js"
55
+ },
56
+ "license": "GPL-3.0",
57
+ "dependencies": {
58
+ "@modelcontextprotocol/sdk": "^1.26.0",
59
+ "chromadb": "^1.10.5",
60
+ "express": "^4.21.0",
61
+ "ollama": "^0.5.11",
62
+ "uuid": "^11.0.3",
63
+ "zod": "^4.3.6"
64
+ },
65
+ "devDependencies": {
66
+ "@types/express": "^5.0.0",
67
+ "@types/supertest": "^6.0.3",
68
+ "@types/uuid": "^10.0.0",
69
+ "supertest": "^7.2.2",
70
+ "tsx": "^4.19.0",
71
+ "typescript": "^5.6.0",
72
+ "vitest": "^4.0.18"
73
+ }
74
+ }