-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 1.93 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
79
80
81
82
83
84
{
"name": "miii-agent",
"version": "0.1.34",
"description": "Local AI coding agent for your terminal — an open-source, offline alternative to Claude Code, Cursor, and GitHub Copilot, powered by Ollama. Private by default, free forever.",
"type": "module",
"bin": {
"miii": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=18"
},
"scripts": {
"start": "tsx src/cli.tsx",
"eval": "tsx src/cli.tsx eval",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"dev": "tsx watch src/cli.tsx",
"build": "tsup",
"postbuild": "node -e \"if(process.platform!=='win32')require('fs').chmodSync('dist/cli.js',0o755)\"",
"prepack": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maruakshay/miii-cli.git"
},
"homepage": "https://github.com/maruakshay/miii-cli#readme",
"bugs": {
"url": "https://github.com/maruakshay/miii-cli/issues"
},
"keywords": [
"cli",
"ai",
"ai-agent",
"coding-agent",
"ai-coding-assistant",
"ollama",
"llm",
"local-llm",
"local-first",
"offline",
"privacy",
"terminal",
"tui",
"ink",
"agent",
"pair-programming",
"code-generation",
"llama-cpp",
"lm-studio",
"copilot",
"copilot-alternative",
"cursor-alternative",
"claude-code",
"claude-code-alternative",
"developer-tools",
"qwen"
],
"license": "MIT",
"dependencies": {
"cli-highlight": "^2.1.11",
"execa": "^9.0.0",
"ink": "^5.0.0",
"marked": "^12.0.2",
"marked-terminal": "^7.3.0",
"ollama": "^0.5.0",
"react": "^18.3.0",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/marked-terminal": "^6.1.1",
"@types/node": "^22.0.0",
"@types/react": "^18.3.0",
"tsup": "^8.5.1",
"tsx": "^4.19.0",
"typescript": "^5.7.0",
"vitest": "^4.1.9"
}
}