-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 2.58 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 2.58 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@openanalystinc/openanalyst-cli",
"version": "2.0.26",
"description": "OpenAnalyst CLI - The Universal AI Agent for Your Terminal. 8 providers (OpenAnalyst, Anthropic Claude, OpenAI GPT, Google Gemini, xAI Grok, OpenRouter, Amazon Bedrock, Stability AI), 65+ slash commands, 22 built-in tools, smart model routing, multi-agent orchestration, hosted session APIs, and a full interactive TUI.",
"bin": {
"openanalyst": "bin/cli.js",
"ollama": "bin/ollama.js"
},
"scripts": {
"postinstall": "node scripts/postinstall.js"
},
"files": [
"bin/",
"scripts/postinstall.js",
"ink-tui/dist/**/*.js",
"ink-tui/dist/**/*.d.ts",
"!ink-tui/dist/**/*.test.js",
"!ink-tui/dist/**/*.test.d.ts",
"!ink-tui/dist/test-utils/**",
"!ink-tui/dist/**/*.map",
"!ink-tui/dist/**/*.js.map",
"!ink-tui/dist/**/*.d.ts.map",
"ink-tui/package.json",
"README.md",
"LICENSE"
],
"dependencies": {
"@playwright/mcp": "^0.0.70",
"ansi-escapes": "^7.3.0",
"chalk": "^4.1.2",
"cli-spinners": "^2.9.2",
"clipboardy": "~5.2.0",
"color-convert": "^2.0.1",
"diff": "^8.0.3",
"fzf": "^0.5.2",
"highlight.js": "^11.11.1",
"ink": "npm:@jrichman/ink@6.6.7",
"ink-gradient": "^3.0.0",
"ink-spinner": "^5.0.0",
"lowlight": "^3.3.0",
"react": "^19.2.0",
"shell-quote": "^1.8.3",
"sql.js": "^1.14.1",
"string-width": "^8.1.0",
"strip-ansi": "^7.1.0",
"tinygradient": "^1.1.5",
"zod": "^3.23.8"
},
"keywords": [
"cli",
"ai",
"agent",
"openanalyst",
"llm",
"terminal",
"tui",
"code-assistant",
"ai-agent",
"anthropic",
"claude",
"openai",
"gpt",
"gemini",
"grok",
"multi-provider",
"code-analysis",
"developer-tools",
"coding-agent",
"mcp"
],
"author": {
"name": "OpenAnalyst Inc",
"email": "support@openanalyst.com",
"url": "https://openanalyst.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenAnalystInc/cli.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=18"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"bugs": {
"url": "https://github.com/OpenAnalystInc/cli/issues"
},
"homepage": "https://openanalyst.com",
"devDependencies": {
"@types/node": "^25.5.2",
"@types/react": "^19.2.14",
"@xterm/headless": "^6.0.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.2"
}
}