-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "brain.md",
"private": true,
"version": "0.4.9",
"license": "AGPL-3.0-or-later",
"description": "A local-first second brain for you — and for your AI agents. Markdown vault, live editor, semantic search (RAG via WASM ONNX), and an MCP server with OAuth 2.1.",
"author": {
"name": "Michał Lipiński",
"url": "https://lipinski.work/"
},
"homepage": "https://github.com/mi4uu/brain.md#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/mi4uu/brain.md.git"
},
"bugs": {
"url": "https://github.com/mi4uu/brain.md/issues"
},
"keywords": [
"second-brain",
"notes",
"markdown",
"obsidian",
"rag",
"mcp",
"lancedb",
"ai-agents",
"local-first",
"bun",
"elysia"
],
"type": "module",
"workspaces": ["server", "web"],
"scripts": {
"dev": "bun --filter '*' dev",
"dev:server": "bun --cwd server run dev",
"dev:web": "bun --cwd web run dev",
"build": "bun --cwd web run build",
"start": "bun --cwd server run start",
"test": "bun --cwd server test",
"typecheck": "bun --cwd server run typecheck && bun --cwd web run typecheck"
},
"devDependencies": {
"typescript": "^5.6.3"
}
}