Updated to typescript and added chalk for a bit of color and formatting

This commit is contained in:
2025-06-13 18:39:42 -05:00
parent ac688019ca
commit 7e8dbaaa90
6 changed files with 665 additions and 81 deletions

View File

@@ -2,14 +2,20 @@
"name": "node-chat-cli",
"version": "1.0.0",
"description": "A command line chat program that interacts IVA Studio's basic_messenger API.",
"main": "src/index.js",
"bin": "src/index.ts",
"scripts": {
"start": "node src/index.js"
"start": "npx tsx src/index.ts"
},
"dependencies": {
"axios": "^1.9.0",
"chalk": "^5.4.1",
"dotenv": "^16.5.0"
},
"author": "",
"license": "MIT"
"license": "MIT",
"devDependencies": {
"@types/chalk": "^0.4.31",
"@types/node": "^24.0.1",
"tsx": "^4.20.3"
}
}