-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 934 Bytes
/
package.json
File metadata and controls
47 lines (47 loc) · 934 Bytes
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
{
"name": "codemancer",
"version": "0.0.7",
"description": "Code with GPT-4 from your command line",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"codemancer": "./dist/index.js",
"cm": "./dist/index.js"
},
"scripts": {
"test": "jest --watch",
"build": "tsup"
},
"author": "Mohamed Moustafa (mmoustafa.com)",
"license": "GPL",
"dependencies": {
"190proof": "^1.0.4",
"chalk": "^4.1.2",
"eventsource-parser": "^1.0.0",
"node-fetch": "^2.6.9",
"yargs": "^17.7.2",
"zod": "^3.23.5"
},
"keywords": [
"command",
"command-line",
"ai",
"openai",
"open-ai",
"gpt",
"gpt-4",
"gpt-3.5-turbo",
"codegen",
"popular"
],
"devDependencies": {
"@types/yargs": "^17.0.32",
"ts-node": "^10.9.2",
"tsup": "^8.0.2",
"typescript": "^5.4.5"
}
}