-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
50 lines (50 loc) · 1.27 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
49
50
{
"name": "shell-ask",
"version": "0.0.43",
"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": "1.0.2",
"@ai-sdk/google": "1.0.3",
"@ai-sdk/openai": "1.0.4",
"ai": "4.0.3",
"cac": "^6.7.14",
"fast-glob": "^3.3.2",
"log-update": "^6.0.0",
"marked": "15.0.1",
"marked-terminal": "7.2.1",
"ollama-ai-provider": "0.16.1",
"prompts": "2.4.2",
"update-notifier": "7.3.1",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/marked-terminal": "^6.1.1",
"@types/node": "22.9.0",
"@types/prompts": "^2.4.9",
"@types/update-notifier": "^6.0.8",
"colorette": "^2.0.20",
"tsup": "^8.0.2",
"typescript": "5.6.3",
"zod-to-json-schema": "3.23.5"
},
"license": "MIT",
"packageManager": "[email protected]+sha256.dbdf5961c32909fb030595a9daa1dae720162e658609a8f92f2fa99835510ca5"
}