forked from egoist/shell-ask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.15 KB
/
package.json
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
{
"name": "shell-ask",
"version": "0.0.32",
"description": "Ask LLM any question in your terminal",
"type": "module",
"bin": {
"ask": "./dist/cli.js"
},
"files": [
"dist",
"schema.json"
],
"repository": {
"type": "git",
"url": "https://github.com/egoist/shell-ask"
},
"scripts": {
"build": "pnpm gen-config-schema && tsup",
"dev": "pnpm build --watch",
"prepublishOnly": "pnpm build",
"gen-config-schema": "bun scripts/gen-config-schema.ts"
},
"dependencies": {
"@ai-sdk/anthropic": "^0.0.14",
"@ai-sdk/google": "^0.0.14",
"@ai-sdk/openai": "^0.0.13",
"ai": "^3.1.12",
"cac": "^6.7.14",
"fast-glob": "^3.3.2",
"log-update": "^6.0.0",
"marked": "^12.0.2",
"marked-terminal": "^7.0.0",
"ollama-ai-provider": "^0.7.0",
"prompts": "^2.4.2",
"update-notifier": "^7.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/marked-terminal": "^6.1.1",
"@types/node": "^20.12.12",
"@types/prompts": "^2.4.9",
"@types/update-notifier": "^6.0.8",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"zod-to-json-schema": "^3.23.0"
},
"license": "MIT"
}