{
    "name": "@promptable/openai",
    "private": false,
    "version": "0.0.1",
    "description": "Node.js library for the OpenAI API",
    "repository": {
        "type": "git",
        "url": "git@github.com:openai/openai-node.git"
    },
    "keywords": [
        "openai",
        "open",
        "ai",
        "gpt-3",
        "gpt3"
    ],
    "files": [
        "dist",
        "OpenAIApi.md"
    ],
    "author": "OpenAI",
    "license": "MIT",
    "type": "module",
    "types": "./dist/index.d.ts",
    "exports": {
        ".": {
            "types": "./dist/index.d.ts",
            "default": "./dist/index.js"
        },
        "./package.json": "./package.json",
        "./stream": {
            "types": "./dist/stream.d.ts",
            "default": "./dist/stream.js"
        }
    },
    "typesVersions": {
        "*": {
            "stream": [
                "dist/stream.d.ts"
            ]
        }
    },
    "engines": {
        "node": ">=16.15"
    },
    "scripts": {
        "clean": "rimraf ./dist",
        "prebuild": "npm run clean",
        "build": "tsc -p .",
        "prepublishOnly": "npm run build"
    },
    "dependencies": {
        "@fortaine/fetch": "^6.2.3",
        "btoa": "^1.2.1",
        "form-data": "^4.0.0",
        "loglevel": "^1.8.1",
        "es6-promise": "^4.2.4",
        "url-parse": "^1.4.3"
    },
    "devDependencies": {
        "@types/node": "*",
        "@types/url-parse": "1.4.4",
        "rimraf": "^3.0.2",
        "typescript": "^4.9.4"
    }
}
