-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.34 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@gorajing/zuun",
"version": "0.1.3",
"description": "Persistent memory for AI-assisted work — local-first markdown + SQLite, hybrid search, Claude Code plugin.",
"author": "Jin Choi",
"license": "MIT",
"homepage": "https://github.com/gorajing/zuun",
"repository": {
"type": "git",
"url": "git+https://github.com/gorajing/zuun.git"
},
"bugs": {
"url": "https://github.com/gorajing/zuun/issues"
},
"keywords": [
"claude-code",
"mcp",
"memory",
"ai-agents",
"local-first",
"typescript",
"plugin"
],
"type": "commonjs",
"engines": {
"node": "20.x || 22.x"
},
"bin": {
"zuun": "bin/zuun.js"
},
"files": [
"bin/",
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/mcp.ts",
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"cli": "tsx src/cli.ts",
"reindex": "tsx src/scripts/reindex.ts",
"prepack": "npm run build",
"prepublishOnly": "npm test"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"better-sqlite3": "^12.8.0",
"gray-matter": "^4.0.3",
"sqlite-vec": "^0.1.7",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.0",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}