nuxt-chatgpt
Version:
ChatGPT integration for Nuxt 3
72 lines • 1.81 kB
JSON
{
"name": "nuxt-chatgpt",
"version": "0.2.7",
"description": "ChatGPT integration for Nuxt 3",
"license": "MIT",
"type": "module",
"homepage": "https://vuemadness.com/nuxt-chatgpt",
"bugs": {
"url": "https://github.com/schnapsterdog/nuxt-chatgpt/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/schnapsterdog/nuxt-chatgpt"
},
"contributors": [
{
"name": "Oliver Trajceski (@schnapsterdog)"
}
],
"author": {
"name": "Oliver Trajceski",
"email": "oliver@akrinum.com"
},
"keywords": [
"vue3",
"nuxt3",
"nuxt",
"nuxt.js",
"nuxt-chatgpt",
"image",
"image-generator"
],
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"prepack": "nuxt-module-build",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:generate": "nuxi generate playground",
"dev:prepare": "nuxt-module-build --stub && nuxi prepare playground",
"dev:preview": "nuxi preview playground",
"release": "npm run lint && npm run test && npm run prepack && changelogen --release --minor && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch"
},
"dependencies": {
"@nuxt/kit": "latest",
"defu": "latest",
"openai": "^4.96.2"
},
"devDependencies": {
"@nuxt/eslint-config": "latest",
"@nuxt/module-builder": "^0.2.1",
"@nuxt/schema": "latest",
"@nuxt/test-utils": "latest",
"changelogen": "latest",
"eslint": "latest",
"nuxt": "latest",
"vitest": "latest"
}
}