{ "name": "openai-discord", "version": "1.0.0", "description": "A very simple Discord Bot that integrates the OpenAI library to make use of ChatGPT", "author": "Matias Espinoza ", "private": true, "main": "index.js", "license": "MIT", "scripts": { "build": "yarn tsc && tsc-alias", "start": "node dist/index.js", "dev": "ts-node-dev -r tsconfig-paths/register src/index.ts" }, "repository": { "url": "https://github.com/KrozT/openai-discord", "type": "git" }, "devDependencies": { "@types/node": "^18.15.0", "@typescript-eslint/eslint-plugin": "^5.51.0", "@typescript-eslint/parser": "^5.51.0", "eslint": "^8.33.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-airbnb-typescript": "^17.0.0", "eslint-plugin-import": "^2.27.5", "ts-node-dev": "^2.0.0", "tsc-alias": "^1.8.3", "tsconfig-paths": "^4.1.2", "typescript": "^4.9.5" }, "dependencies": { "discord.js": "^14.7.1", "dotenv": "^16.0.3", "openai": "^3.2.1", "winston": "^3.8.2" } }