-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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
{
"name": "@ashnov/hephaestus-cli",
"version": "0.2.1",
"description": "Your AI powered CLI-based coding assistant. Powered by OpenAI davinci models.",
"main": "./build/app.js",
"type": "module",
"scripts": {
"start:dev": "tsc -w",
"start:prod": "tsc",
"postinstall": "heph -ab"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Suyash-Purwar/Hephaestus-cli.git"
},
"bin": {
"heph": "./build/app.js"
},
"keywords": [
"ChatGPT",
"OpenAI",
"DALL-E",
"AI",
"Terminal",
"CLI"
],
"author": "Suyash Purwar",
"license": "ISC",
"bugs": {
"url": "https://github.com/Suyash-Purwar/Hephaestus-cli/issues"
},
"homepage": "https://github.com/Suyash-Purwar/Hephaestus-cli#readme",
"dependencies": {
"chalk": "^5.2.0",
"gradient-string": "^2.0.2",
"inquirer": "^9.1.4",
"node-emoji": "^1.11.0",
"openai": "^3.1.0",
"ora": "^6.1.2"
},
"devDependencies": {
"@types/gradient-string": "^1.1.2",
"@types/inquirer": "^9.0.3",
"@types/node": "^18.11.18",
"@types/node-emoji": "^1.8.2",
"@types/ora": "^3.2.0"
}
}