-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "@fedtti/chatbot-cli",
"version": "1.0.0",
"description": "CS50x • Final Project by Federico Moretti",
"keywords": [
"cs50x",
"nodejs",
"azure",
"openai",
"hacktoberfest"
],
"homepage": "https://github.com/fedtti/chatbot-cli#readme",
"bugs": {
"url": "https://github.com/fedtti/chatbot-cli/issues"
},
"license": "MIT",
"author": "Federico Moretti <hello@federicomoretti.it> (https://federicomoretti.it/)",
"main": "./dist/index.js",
"bin": {
"chatbot-cli": "./dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fedtti/chatbot-cli.git"
},
"scripts": {
"build": "tsc && mkdir ./dist/lib/data && (cp -a ./src/lib/data/. ./dist/lib/data || copy ./src/lib/data/* ./dist/lib/data)",
"clean": "rm -fr ./dist ./node_modules || rm ./dist ./node_modules -r -fo",
"start": "node ./dist/index.js"
},
"dependencies": {
"@azure-rest/ai-inference": "latest",
"@azure/core-auth": "latest",
"@azure/core-sse": "latest",
"@inquirer/prompts": "^5.5.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"figlet": "^1.7.0",
"openai": "latest"
},
"devDependencies": {
"@types/figlet": "^1.5.8",
"@types/node": "^22.5.4",
"tsx": "^4.19.0",
"typescript": "^5.6.2"
},
"type": "module",
"private": true
}