forked from Akash-nath29/Coderrr
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 1.98 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 1.98 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
{
"name": "coderrr-cli",
"version": "1.1.1",
"description": "AI-powered coding agent that understands natural language requests and autonomously creates, modifies, and manages code across your projects",
"main": "bin/coderrr.js",
"bin": {
"coderrr": "bin/coderrr.js"
},
"scripts": {
"start": "node ./bin/coderrr.js",
"start:backend": "python -m uvicorn main:app --reload --port 5000",
"link": "npm link",
"test": "jest"
},
"keywords": [
"ai",
"ai-agent",
"coding-agent",
"cli",
"terminal",
"automation",
"code-generation",
"mistral-ai",
"github-models",
"developer-tools",
"natural-language",
"code-assistant",
"copilot",
"ai-coding",
"fastapi",
"nodejs",
"python",
"code-automation",
"ai-helper",
"productivity"
],
"author": {
"name": "Akash Nath",
"email": "anath5440@gmail.com",
"url": "https://github.com/Akash-nath29"
},
"contributors": [
{
"name": "Coderrr Contributors",
"url": "https://github.com/Akash-nath29/Coderrr/graphs/contributors"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Akash-nath29/Coderrr.git"
},
"bugs": {
"url": "https://github.com/Akash-nath29/Coderrr/issues"
},
"homepage": "https://github.com/Akash-nath29/Coderrr#readme",
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/Akash-nath29"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=7.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"dependencies": {
"axios": "^1.6.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"diff": "^5.1.0",
"dotenv": "^16.1.4",
"inquirer": "^8.2.5",
"ora": "^5.4.1"
},
"devDependencies": {
"jest": "30.2.0"
},
"files": [
"bin/",
"src/",
"README.md",
"LICENSE",
"CHANGELOG.md",
".env.client.example"
],
"preferGlobal": true,
"publishConfig": {
"access": "public"
}
}