UNPKG

chaicode-persona-chatbot-cli

Version:

A CLI chatbot application featuring persona-based interactions with ChaiCode instructors Hitesh Choudhary and Piyush Garg

94 lines (93 loc) 2.12 kB
{ "name": "chaicode-persona-chatbot-cli", "version": "1.0.3", "description": "A CLI chatbot application featuring persona-based interactions with ChaiCode instructors Hitesh Choudhary and Piyush Garg", "license": "MIT", "author": { "name": "Shivayan Bora", "email": "bora.shivayan@gmail.com", "url": "https://github.com/shivayan-bora" }, "homepage": "https://github.com/shivayan-bora/chaicode-persona-chatbot-cli#readme", "repository": { "type": "git", "url": "git+https://github.com/shivayan-bora/chaicode-persona-chatbot-cli.git" }, "bugs": { "url": "https://github.com/shivayan-bora/chaicode-persona-chatbot-cli/issues" }, "keywords": [ "cli", "chatbot", "ai", "openai", "chaicode", "hitesh-choudhary", "piyush-garg", "persona", "teaching", "programming", "react", "ink", "terminal" ], "bin": "dist/cli.js", "type": "module", "engines": { "node": ">=16" }, "scripts": { "build": "tsc && npx cpx2 \"source/prompts/**/*\" dist/prompts", "dev": "tsc --watch", "test": "prettier --check . && xo && ava" }, "files": [ "dist" ], "dependencies": { "ink": "^4.1.0", "ink-big-text": "^2.0.0", "ink-divider": "^4.1.1", "ink-gradient": "^3.0.0", "ink-select-input": "^5.0.0", "ink-spinner": "^5.0.0", "ink-text-input": "^5.0.1", "meow": "^11.0.0", "openai": "^5.12.2", "react": "^18.2.0" }, "devDependencies": { "@sindresorhus/tsconfig": "^3.0.1", "@types/ink-spinner": "^3.0.5", "@types/react": "^18.0.32", "@vdemedes/prettier-config": "^2.0.1", "ava": "^5.2.0", "chalk": "^5.2.0", "cpx2": "^8.0.0", "eslint-config-xo-react": "^0.27.0", "eslint-plugin-react": "^7.32.2", "eslint-plugin-react-hooks": "^4.6.0", "ink-testing-library": "^3.0.0", "prettier": "^2.8.7", "ts-node": "^10.9.1", "typescript": "^5.0.3", "xo": "^0.53.1" }, "ava": { "extensions": { "ts": "module", "tsx": "module" }, "nodeArguments": [ "--loader=ts-node/esm" ] }, "xo": { "extends": "xo-react", "prettier": true, "rules": { "react/prop-types": "off" } }, "prettier": "@vdemedes/prettier-config" }