UNPKG

strapi-supergpt

Version:

A plugin that gives you the ability to integrate ChatGPT into strapi

105 lines (104 loc) 2.82 kB
{ "name": "strapi-supergpt", "version": "1.3.3", "description": "A plugin that gives you the ability to integrate ChatGPT into strapi", "scripts": { "format": "npm-run-all -p format:*", "format:code": "yarn prettier:code --write", "format:other": "yarn prettier:other --write", "lint": "npm-run-all -p lint:*", "lint:code": "eslint .", "lint:fix": "eslint --fix .", "lint:other": "yarn prettier:other --check", "prettier:code": "prettier \"**/*.js\"", "prettier:other": "prettier \"**/*.{md,css,scss,yaml,yml}\"", "test": "jest" }, "strapi": { "name": "strapi-supergpt", "description": "A plugin that gives you the ability to integrate ChatGPT into strapi", "kind": "plugin", "displayName": "SuperGPT" }, "jest": { "setupFiles": [ "./jest.setup.js" ] }, "author": { "name": "Timothy Brantley II", "email": "tbrantleyii@gmail.com", "url": "https://tbrantleyii.dev" }, "homepage": "https://github.com/theCompanyDream/strapi-supergpt#readme", "repository": { "type": "git", "url": "https://github.com/theCompanyDream/strapi-supergpt.git" }, "maintainers": [ { "name": "Timothy Brantley II", "email": "tbrantleyii@gmail.com", "url": "https://tbrantleyii.dev" } ], "engines": { "node": "^18 || ^20", "npm": ">=6.0.0" }, "license": "MIT", "dependencies": { "axios": "^1.3.3", "dompurify": "^3.1.0", "mime-types": "^2.1.35", "openai": "^4.46.1", "react-markdown": "^9.0.1", "react-syntax-highlighter": "^15.5.0" }, "devDependencies": { "@babel/core": "^7.21.0", "@babel/eslint-parser": "^7.19.1", "@babel/preset-env": "^7.24.4", "@babel/preset-react": "^7.24.1", "@testing-library/jest-dom": "^6.4.2", "@testing-library/react": "^15.0.2", "babel-eslint": "^10.1.0", "eslint": "^8.16.0", "eslint-config-airbnb": "^19.0.4", "eslint-config-airbnb-base": "^15.0.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-import": "^2.25.4", "eslint-plugin-jsdoc": "^48.2.3", "eslint-plugin-jsx-a11y": "^6.5.1", "eslint-plugin-node": "^11.1.0", "eslint-plugin-react": "^7.28.0", "eslint-plugin-react-hooks": "^4.3.0", "jest": "^29.7.0", "lint-staged": "10.5.4", "npm-run-all": "^4.1.5", "prettier": "^3.2.5", "react": "^18.2.0", "react-dom": "^18.2.0" }, "peerDependencies": { "@strapi/plugin-users-permissions": "4.24.2", "@strapi/strapi": "^4.4.5", "styled-components": "5.3.3" }, "keywords": [ "strapi", "strapi-plugin", "strapi-supergpt", "openai", "chatgpt", "supergpt", "dall-e", "artificial-intelligence", "ai", "gpt4", "gpt4o", "gpt3.5turbo", "gpt-4", "gpt-4o" ] }