-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.16 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
{
"name": "navi",
"private": true,
"version": "0.1.0",
"description": "Navi — your AI work companion that observes, remembers, and grows with you. Local-first desktop app that turns Claude Code sessions into a living wiki.",
"keywords": [
"claude-code",
"ai-companion",
"local-first",
"tauri",
"knowledge-graph",
"llm",
"wiki",
"personal-ai",
"react",
"typescript"
],
"homepage": "https://github.com/HduSy/navi",
"repository": {
"type": "git",
"url": "https://github.com/HduSy/navi.git"
},
"bugs": {
"url": "https://github.com/HduSy/navi/issues"
},
"license": "MIT",
"type": "module",
"engines": {
"node": ">=22",
"pnpm": ">=10.7 <11"
},
"scripts": {
"dev": "pnpm --filter @navi/desktop dev",
"build": "pnpm --filter @navi/desktop build",
"dist": "pnpm --filter @navi/desktop dist && bash scripts/patch-dmg.sh",
"preview": "pnpm --filter @navi/desktop preview",
"typecheck": "pnpm -r typecheck",
"lint": "pnpm -r lint"
},
"devDependencies": {
"typescript": "^5.7.0"
},
"packageManager": "pnpm@10.23.0",
"pnpm": {
"onlyBuiltDependencies": ["esbuild"]
}
}