Skip to content

Commit 1a6f10f

Browse files
committed
Setup config files for configuration
1 parent 6b41327 commit 1a6f10f

File tree

4 files changed

+15
-30
lines changed

4 files changed

+15
-30
lines changed

.npmignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
src/
2+
.env
3+
tsconfig.json

package-lock.json

Lines changed: 5 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
11
{
2-
"name": "hephaestus-cli",
3-
"version": "1.0.0",
4-
"description": "Communicate with ChatGPT and DALL-E right through your terminal",
2+
"name": "@ashnov/hephaestus-cli",
3+
"version": "0.2.0",
4+
"description": "Your AI powered CLI-based coding assistant. Powered by OpenAI davinci models.",
55
"main": "./build/app.js",
66
"type": "module",
77
"scripts": {
8-
"test": "echo \"Error: no test specified\" && exit 1"
8+
"start:dev": "tsc -w",
9+
"start:prod": "tsc"
910
},
1011
"repository": {
1112
"type": "git",
@@ -34,8 +35,7 @@
3435
"inquirer": "^9.1.4",
3536
"node-emoji": "^1.11.0",
3637
"openai": "^3.1.0",
37-
"ora": "^6.1.2",
38-
"typescript": "^4.9.4"
38+
"ora": "^6.1.2"
3939
},
4040
"devDependencies": {
4141
"@types/gradient-string": "^1.1.2",

src/ResponseHandler.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ export class ResponseHandler {
151151
}
152152

153153
private static execVersionCommand(): void {
154-
console.log(Stylize.flatInfo('Version: 0.1.0'));
154+
console.log(Stylize.flatInfo('Version: 0.2.0'));
155155
}
156156

157157
private static async execAnswerCommand(

0 commit comments

Comments
 (0)