-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
97 lines (97 loc) · 2.48 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
{
"name": "strapi-r2d2",
"version": "1.0.2",
"description": "Um plug-in que permite que você integre o ChatGPT e o R2D2 ao strapi",
"scripts": {
"format": "npm-run-all -p format:*",
"format:code": "npm run prettier:code -- --write",
"format:other": "npm run prettier:other -- --write",
"lint": "npm-run-all -p lint:code",
"lint:code": "eslint .",
"lint:fix": "eslint --fix .",
"lint:other": "npm run prettier:other -- --check",
"prettier:code": "prettier \"**/*.js\"",
"prettier:other": "prettier \"**/*.{md,css,scss,yaml,yml}\""
},
"strapi": {
"name": "strapi-r2d2",
"description": "Um plug-in que permite que você integre o ChatGPT e o R2D2 ao strapi",
"kind": "plugin",
"displayName": "R2D2"
},
"peerDependencies": {
"@strapi/strapi": "^4.4.5"
},
"dependencies": {
"axios": "^1.3.3",
"mime-types": "^2.1.35",
"openai": "^4.24.4",
"react-syntax-highlighter": "^15.5.0"
},
"author": {
"name": "Vilmo Oliveira de Paula Junior",
"email": "junior.vopj@gmail.com",
"url": "https://vilmojr.com"
},
"homepage": "https://github.com/juniorVOPJ/strapi-r2d2/blob/main/README.md",
"repository": {
"type": "git",
"url": "https://github.com/juniorVOPJ/strapi-r2d2.git"
},
"maintainers": [
{
"name": "Vilmo Oliveira de Paula Junior",
"email": "junior.vopj@gmail.com",
"url": "https://vilmojr.com"
}
],
"engines": {
"node": ">=14.19.1",
"npm": ">=6.0.0"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"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": "^40.0.0",
"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",
"husky": "3.0.0",
"lint-staged": "10.5.4",
"npm-run-all": "^4.1.5"
},
"keywords": [
"strapi",
"strapi-plugin",
"strapi-r2d2",
"r2d2",
"fusionlabs",
"openai",
"openai-api",
"chatgpt",
"chatbot",
"gpt",
"gpt-3",
"gpt-4",
"dall-e 3",
"dall-e 2",
"gpt3",
"open-source",
"machine-learning",
"machine learning",
"ml",
"ai",
"artificial-intelligence",
"conversation",
"chat",
"bot"
]
}