-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.73 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.73 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "mor",
"version": "0.19.0",
"description": "AI-accessible knowledge you actually own — plain markdown on your disk",
"type": "module",
"license": "MIT",
"author": "Sigurd Fosseng <sigurd@fosseng.net>",
"repository": {
"type": "git",
"url": "https://github.com/laat/mor.git"
},
"homepage": "https://mor.laat.dev",
"keywords": [
"memory",
"ai",
"mcp",
"knowledge-base",
"markdown",
"sqlite",
"fts5",
"embeddings",
"cli"
],
"bin": {
"mor": "dist/cli.js"
},
"man": [
"./man/mor.1"
],
"files": [
"dist",
"man",
".claude-plugin",
".mcp.json",
"skills"
],
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=20"
},
"scripts": {
"prepublishOnly": "pnpm lint && pnpm test && pnpm build",
"build": "tsc",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"format": "prettier --write src/",
"format:check": "prettier --check src/"
},
"dependencies": {
"@hono/node-server": "^1.19.12",
"@modelcontextprotocol/sdk": "^1.29.0",
"better-sqlite3": "^12.8.0",
"chalk": "^5.6.2",
"commander": "^14.0.3",
"gray-matter": "^4.0.3",
"hono": "^4.12.11",
"marked": "^15.0.12",
"marked-terminal": "7.3.0",
"p-queue": "^9.1.1",
"sql-template-tag": "^5.2.1",
"sqlite-vec": "^0.1.9",
"zod": "^4.3.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/better-sqlite3": "^7.6.13",
"@types/node": "^25.5.2",
"eslint": "^10.2.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.58.0",
"vitest": "^4.1.2"
}
}