-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "strapi-supergpt",
"version": "1.3.2",
"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-github-btn": "^1.4.0",
"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"
]
}