-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.02 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
{
"name": "askimo",
"version": "1.8.0",
"description": "A CLI tool for communicating with AI providers (Perplexity, OpenAI, Anthropic)",
"license": "Apache-2.0",
"author": "Amit Tal",
"keywords": [
"cli",
"ai",
"llm",
"perplexity",
"openai",
"anthropic",
"claude",
"gpt",
"chatbot",
"terminal"
],
"type": "module",
"bin": {
"askimo": "./index.mjs"
},
"scripts": {
"test": "ava",
"lint": "biome check --write"
},
"ava": {
"files": [
"test/**/*.mjs"
]
},
"repository": "https://github.com/amitosdev/askimo.git",
"homepage": "https://github.com/amitosdev/askimo#readme",
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"ava": "^6.4.1"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.64",
"@ai-sdk/google": "^3.0.53",
"@ai-sdk/openai": "^3.0.48",
"@ai-sdk/perplexity": "^3.0.26",
"@ai-sdk/xai": "^3.0.74",
"@inquirer/input": "^5.0.10",
"ai": "^6.0.138",
"commander": "^14.0.3",
"hcat": "^2.2.1"
}
}