{
  "name": "gpt4all-ts-client",
  "version": "0.3.0",
  "private": false,
  "type": "module",
  "description": "GPT4All Typescript Client",
  "keywords": [
    "gpt4all"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/jellydn/gpt4all-ts"
  },
  "license": "MIT",
  "author": "Dung Huynh",
  "main": "dist/gpt4all.js",
  "types": "dist/gpt4all.d.ts",
  "files": [
    "/dist"
  ],
  "scripts": {
    "build": "tsup src/gpt4all.ts --format esm --dts --clean",
    "dev": "npm-run-all -s dev:*",
    "dev:simple": "DEBUG=* tsx examples/simple.ts",
    "dev:advance": "DEBUG=* tsx examples/advance.ts",
    "pkg-check": "package-check",
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "dependencies": {
    "cli-progress": "^3.12.0",
    "debug": "^4.3.4",
    "got": "^13.0.0",
    "os": "^0.1.2"
  },
  "devDependencies": {
    "@skypack/package-check": "^0.2.2",
    "@types/cli-progress": "^3.11.0",
    "@types/debug": "^4.1.8",
    "npm-run-all": "^4.1.5",
    "tsup": "^7.1.0",
    "tsx": "^3.12.7",
    "typescript": "^5.1.6"
  },
  "engines": {
    "node": ">=16.0.0"
  }
}
