-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
112 lines (112 loc) · 3.01 KB
/
package.json
File metadata and controls
112 lines (112 loc) · 3.01 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
110
111
112
{
"name": "@zds-ai/cli",
"version": "0.2.0-alpha.5",
"description": "A multi-backend AI agent CLI supporting OpenAI, Anthropic, Grok, Ollama, and more.",
"type": "module",
"main": "dist/index.js",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"bin": {
"zai-cli": "dist/index.js",
"encode-speech.sh": "dist/bin/encode-speech.sh",
"extract-text.sh": "dist/bin/extract-text.sh",
"fastcaption.sh": "dist/bin/fastcaption.sh",
"generate_image_sd.sh": "dist/bin/generate_image_sd.sh",
"joycaption.sh": "dist/bin/joycaption.sh",
"read_xlsx.py": "dist/bin/read_xlsx.py",
"talking-agents.sh": "dist/bin/talking-agents.sh",
"video-agents.sh": "dist/bin/video-agents.sh"
},
"scripts": {
"build": "tsc && mkdir -p dist/bin && cp -r src/bin/* dist/bin/",
"build:bun": "bun run tsc && mkdir -p dist/bin && cp -r src/bin/* dist/bin/",
"dev": "bun run src/index.ts",
"dev:node": "tsx src/index.ts",
"start": "node dist/index.js",
"start:bun": "bun run dist/index.js",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"typecheck": "tsc --noEmit",
"install:bun": "bun install"
},
"keywords": [
"agent",
"ai",
"arliai",
"cli",
"grok",
"multi-backend",
"nanogpt",
"ollama",
"openai",
"openrouter",
"plano",
"venice"
],
"author": "The ZDS Group",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ziquid/zds-ai-cli.git"
},
"bugs": {
"url": "https://github.com/ziquid/zds-ai-cli/issues"
},
"homepage": "https://github.com/ziquid/zds-ai-cli#readme",
"files": [
"dist",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"axios": "^1.13.4",
"cfonts": "^3.3.1",
"chalk": "^5.6.2",
"commander": "^12.1.0",
"dotenv": "^16.6.1",
"enquirer": "^2.4.1",
"fs-extra": "^11.3.3",
"ink": "^6.6.0",
"ink-spawn": "^0.1.4",
"marked": "^15.0.12",
"marked-terminal": "^7.3.0",
"openai": "^5.23.2",
"prompts": "^2.4.2",
"react": "^19.0.0",
"ripgrep-node": "^1.0.0",
"tiktoken": "^1.0.22"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/node": "^20.19.27",
"@types/prompts": "^2.4.9",
"@types/react": "^19.0.0",
"@typescript-eslint/eslint-plugin": "^8.51.0",
"@typescript-eslint/parser": "^8.51.0",
"eslint": "^9.39.2",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"packageManager": "bun@1.1.0",
"preferGlobal": true,
"overrides": {
"js-yaml": "^4.1.1",
"glob": "^10.5.0",
"body-parser": "^2.2.1",
"qs": "^6.14.1"
}
}