-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
110 lines (110 loc) · 2.8 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
{
"name": "@caoxupei/ai-agent-cli",
"version": "1.0.2",
"description": "A powerful AI coding agent with multi-provider support (Anthropic, OpenAI, Gemini)",
"type": "module",
"main": "./dist/entrypoints/index.js",
"types": "./dist/entrypoints/index.d.ts",
"bin": {
"ai-agent-cli": "./bin/ai-agent-cli.js",
"aac": "./bin/ai-agent-cli.js"
},
"files": [
"dist",
"bin",
"skills",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "tsx src/entrypoints/cli.ts",
"build": "tsc",
"test": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest --coverage",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepublishOnly": "npm run build"
},
"keywords": [
"ai",
"agent",
"cli",
"coding-assistant",
"anthropic",
"openai",
"gemini",
"claude",
"gpt",
"typescript"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xpnobug/ai-agent-cli.git"
},
"homepage": "https://github.com/xpnobug/ai-agent-cli#readme",
"bugs": {
"url": "https://github.com/xpnobug/ai-agent-cli/issues"
},
"author": "xpnobug",
"license": "MIT",
"dependencies": {
"@alcalzone/ansi-tokenize": "^0.3.0",
"@anthropic-ai/sdk": "^0.39.0",
"@google/generative-ai": "^0.17.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.6",
"bidi-js": "^1.0.3",
"boxen": "^7.1.1",
"chalk": "^5.3.0",
"cheerio": "^1.0.0-rc.12",
"cli-highlight": "^2.1.11",
"cli-table3": "^0.6.5",
"diff": "^8.0.4",
"dotenv": "^16.3.1",
"enquirer": "^2.4.1",
"execa": "^8.0.1",
"fast-glob": "^3.3.2",
"figures": "^6.1.0",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"ink": "^4.4.1",
"ink-spinner": "^5.0.0",
"lodash-es": "^4.17.21",
"lru-cache": "^11.2.7",
"marked": "^15.0.12",
"openai": "^4.51.0",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-reconciler": "^0.31.0",
"string-width": "^8.1.0",
"supports-hyperlinks": "^4.4.0",
"turndown": "^7.2.2",
"type-fest": "^5.5.0",
"usehooks-ts": "^3.1.1",
"vscode-jsonrpc": "^8.2.1",
"vscode-languageserver-protocol": "^3.17.5",
"wrap-ansi": "^9.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/diff": "^8.0.0",
"@types/fs-extra": "^11.0.4",
"@types/marked": "^6.0.0",
"@types/node": "^20.10.0",
"@types/react": "^19.2.14",
"@types/react-reconciler": "^0.33.0",
"@types/semver": "^7.7.1",
"@typescript-eslint/eslint-plugin": "^6.15.0",
"@typescript-eslint/parser": "^6.15.0",
"@vitest/ui": "^1.0.4",
"eslint": "^8.56.0",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.0.4"
}
}