{
    "name": "gpt-turbo",
    "version": "5.0.1",
    "description": "A library for interacting with OpenAI's Chat Completion API",
    "main": "dist/index.js",
    "type": "module",
    "scripts": {
        "lint": "eslint --ext .ts src",
        "lint:strict": "npm run lint -- --max-warnings 0",
        "lint:fix": "npm run lint -- --fix",
        "tscheck": "tsc --noEmit",
        "build": "npm run lint:strict && rimraf dist && tsc -p tsconfig.build.json && copyfiles -u 1 -e \"src/**/*.ts\" \"src/**/*\" dist",
        "docs": "typedoc",
        "test": "jest"
    },
    "keywords": [
        "openai",
        "chatgpt",
        "chat",
        "gpt",
        "gpt3",
        "gpt-3",
        "gpt3.5",
        "gpt-3.5",
        "gpt4",
        "gpt-4",
        "completion",
        "chatcompletion",
        "conversation",
        "conversation ai",
        "ai",
        "ml",
        "bot",
        "chatbot"
    ],
    "author": "Tristan Chin <tristan.chin@chintristan.io>",
    "homepage": "https://gpt-turbo.chintristan.io/",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/maxijonson/gpt-turbo.git"
    },
    "bugs": {
        "url": "https://github.com/maxijonson/gpt-turbo/issues"
    },
    "license": "MIT",
    "directories": {
        "lib": "dist"
    },
    "files": [
        "dist"
    ],
    "exports": {
        "types": "./dist/index.d.ts",
        "default": "./dist/index.js"
    },
    "publishConfig": {
        "access": "public"
    },
    "devDependencies": {
        "@types/jest": "^29.5.5",
        "@types/uuid": "^9.0.4",
        "@typescript-eslint/eslint-plugin": "^6.7.4",
        "@typescript-eslint/parser": "^6.7.4",
        "copyfiles": "^2.4.1",
        "eslint": "^8.51.0",
        "eslint-config-prettier": "^9.0.0",
        "eslint-plugin-prettier": "^5.0.0",
        "jest": "^29.7.0",
        "prettier": "^3.0.3",
        "rimraf": "^5.0.5",
        "ts-jest": "^29.1.1",
        "ts-node": "^10.9.1",
        "typedoc": "^0.25.1",
        "typescript": "^5.2.2"
    },
    "dependencies": {
        "uuid": "^9.0.1",
        "zod": "^3.22.4"
    },
    "gitHead": "2be20a53156d1f36af01483c2c46bc471d7c65ee"
}
