-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
54 lines (54 loc) · 1.24 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
{
"name": "duet-gpt",
"version": "0.1.4",
"description": "Experimental AI developer assistant CLI. Developers gives the AI tasks, AI responds with commands that the CLI performs.",
"repository": {
"type": "git",
"url": "https://github.com/kristoferlund/duet-gpt"
},
"bugs": "https://github.com/kristoferlund/duet-gpt/issues",
"homepage": "https://github.com/kristoferlund/duet-gpt",
"author": "Kristofer Lund <[email protected]>",
"keywords": [
"ai",
"cli",
"assistant",
"agent",
"gpt",
"gpt-4",
"llm",
"openai",
"duet-gpt"
],
"license": "MIT",
"type": "module",
"files": [
"dist",
"system.prompt"
],
"bin": {
"duet-gpt": "./dist/index.mjs"
},
"scripts": {
"build": "pkgroll",
"start": "jiti ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@clack/prompts": "^0.6.3",
"@dqbd/tiktoken": "^1.0.7",
"@types/diff": "^5.0.3",
"@types/node": "^20.2.3",
"axios": "^1.4.0",
"boxen": "^7.1.0",
"cli-markdown": "^3.0.3",
"diff": "^5.1.0",
"execa": "^7.1.1",
"openai": "^3.3.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"pkgroll": "^1.10.0",
"typescript": "^5.0.4"
}
}