-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.57 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ai-x-terminal",
"version": "2.4.0",
"description": "Enhance your command-line experience with AI capabilities using OpenAI's API. Easily integrate with projects and leverage AI in the terminal.",
"keywords": [
"AI",
"OpenAI",
"CLI",
"Terminal",
"ChatGPT",
"Automation",
"Productivity",
"Command-line",
"Workflow",
"Developer-tools",
"File-analysis",
"Code-analysis",
"Coding-assistant",
"Workspace-analysis"
],
"homepage": "https://github.com/nrjdalal/ai-x-terminal#readme",
"bugs": {
"url": "https://github.com/nrjdalal/ai-x-terminal/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nrjdalal/ai-x-terminal.git"
},
"license": "MIT",
"author": "Neeraj Dalal <admin@nrjdalal.com>",
"type": "module",
"main": "dist/index.js",
"bin": {
"ax": "dist/index.js"
},
"scripts": {
"build": "rm -rf dist && tsc",
"link": "bun run build && bun link",
"release": "bunx np",
"test": "zsh .scripts/test.sh"
},
"files": [
"dist"
],
"engines": {
"node": ">=16"
},
"dependencies": {
"@inquirer/password": "^4.0.2",
"chalk": "^5.3.0",
"cli-highlight": "^2.1.11",
"commander": "^12.1.0",
"globby": "^14.0.2",
"openai": "^4.72.0",
"ora": "^8.1.1"
},
"devDependencies": {
"@types/node": "^22.9.0",
"typescript": "^5.6.3"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/nrjdalal"
},
"changelog": {
"url": "https://github.com/nrjdalal/ai-x-terminal/releases"
}
}