gpt4all-cli
Version:
<h1 align="center">Welcome to gpt4all-cli 👋</h1>
63 lines (62 loc) • 1.32 kB
JSON
{
"name": "gpt4all-cli",
"version": "0.2.3",
"keywords": [
"gpt4all",
"gpt4all-cli",
"cli"
],
"repository": {
"type": "git",
"url": "https://github.com/jellydn/gpt4all-cli"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"main": "./dist/index.js",
"module": "./dist/index.js",
"bin": {
"gpt4all": "./dist/index.js"
},
"files": [
"/src",
"/dist"
],
"scripts": {
"build": "tsup src/index.ts --format esm --clean",
"coverage": "vitest run --coverage",
"dev": "tsx src/index.ts",
"package-check": "package-check",
"test": "vitest run",
"test:ui": "vitest --ui"
},
"dependencies": {
"commander": "11.0.0",
"consola": "3.2.3",
"debug": "4.3.4",
"gpt4all-ts-client": "0.3.0",
"ora": "6.3.1",
"prettier": "3.0.0"
},
"devDependencies": {
"@skypack/package-check": "0.2.2",
"@total-typescript/shoehorn": "0.1.1",
"@types/debug": "4.1.8",
"@types/node": "20.4.0",
"@types/prettier": "2.7.3",
"@vitest/coverage-c8": "0.33.0",
"@vitest/ui": "0.33.0",
"tsup": "7.1.0",
"tsx": "3.12.7",
"typescript": "5.1.6",
"vitest": "0.33.0"
},
"engines": {
"node": ">=16.20.0"
}
}