-
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.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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": "nav",
"version": "0.7.7",
"description": "Minimalist coding agent with hashline-based editing",
"type": "module",
"bin": {
"nav": "./src/index.ts"
},
"files": [
"src/**/*",
"sandbox/**/*",
"README.md",
"LICENSE"
],
"scripts": {
"start": "bun run src/index.ts",
"dev": "bun run --watch src/index.ts",
"build": "bun run scripts/build.ts",
"build:darwin-arm64": "bun run scripts/build.ts darwin-arm64",
"build:darwin-x64": "bun run scripts/build.ts darwin-x64",
"build:linux-arm64": "bun run scripts/build.ts linux-arm64",
"build:linux-x64": "bun run scripts/build.ts linux-x64",
"build:windows-x64": "bun run scripts/build.ts windows-x64",
"link-local": "bun run build:darwin-arm64 && ln -sf \"$(pwd)/dist/nav-darwin-arm64\" \"$HOME/.local/bin/nav-local\" && echo 'Linked: nav-local -> dist/nav-darwin-arm64'",
"unlink-local": "rm -f \"$HOME/.local/bin/nav-local\" && echo 'Unlinked nav-local'"
},
"keywords": [
"ai",
"coding-agent",
"llm",
"automation",
"developer-tools",
"bun"
],
"author": "Topi Santakivi",
"license": "MIT",
"dependencies": {
"@anthropic-ai/sdk": "^0.39",
"@google/genai": "^1.41.0",
"ollama": "^0.5",
"openai": "^4"
},
"devDependencies": {
"bun-types": "^1.3.9",
"typescript": "^5.9.3"
}
}