json-gpt
Version:
Json-GPT permite interactuar de forma sencilla con el modelo GPT-3.5-turbo en formato JSON
48 lines (47 loc) • 1.25 kB
JSON
{
"name": "json-gpt",
"version": "1.1.0",
"description": "Json-GPT permite interactuar de forma sencilla con el modelo GPT-3.5-turbo en formato JSON",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsup index.ts --format cjs,esm --dts",
"lint": "tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/javieranguloluna/Json-GPT.git"
},
"keywords": [
"gpt",
"json",
"zod"
],
"author": "JAL",
"license": "MIT",
"bugs": {
"url": "https://github.com/javieranguloluna/Json-GPT/issues"
},
"homepage": "https://github.com/javieranguloluna/Json-GPT#readme",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/node": "^18.15.12",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.4"
},
"dependencies": {
"@changesets/cli": "^2.26.1",
"@dqbd/tiktoken": "^1.0.6",
"dotenv": "^16.0.3",
"openai": "^3.2.1",
"zod": "^3.21.4",
"zod-to-json-schema": "^3.20.4"
}
}