-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.03 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.03 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": "chat-cli",
"version": "0.2.0",
"license": "MIT",
"bin": "dist/chat-cli.js",
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "node dist/chat-cli.js",
"build": "vite build",
"dev": "vite build --watch",
"test": "vitest --run",
"format": "prettier --write --log-level error src/ test/"
},
"files": [
"dist"
],
"dependencies": {
"@ai-sdk/openai": "^1.3.23",
"ai": "^4.3.19",
"chalk": "^5.2.0",
"dedent": "^1.6.0",
"glob": "^11.0.3",
"ink": "^4.1.0",
"ink-spinner": "^5.0.0",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"meow": "^11.0.0",
"react": "^18.2.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@vdemedes/prettier-config": "^2.0.1",
"import-jsx": "^5.0.0",
"prettier": "^3.6.2",
"vite": "^7.0.5",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/gnosis23/chat-cli.git"
},
"bugs": {
"url": "https://github.com/gnosis23/chat-cli/issues"
},
"homepage": "https://github.com/gnosis23/chat-cli#readme"
}