strapi-plugin-faqchatbot 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/_chunks/App-B02Agl-6.mjs +25759 -0
- package/dist/_chunks/App-Cn0wk9Bd.js +25758 -0
- package/dist/_chunks/en-B4KWt_jN.js +4 -0
- package/dist/_chunks/en-Byx4XI2L.mjs +4 -0
- package/dist/admin/index.js +64 -0
- package/dist/admin/index.mjs +65 -0
- package/dist/server/index.js +903 -0
- package/dist/server/index.mjs +902 -0
- package/package.json +79 -0
package/package.json
ADDED
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "1.0.0",
|
|
3
|
+
"keywords": [],
|
|
4
|
+
"type": "commonjs",
|
|
5
|
+
"main": "dist/server/index.js",
|
|
6
|
+
"exports": {
|
|
7
|
+
"./package.json": "./package.json",
|
|
8
|
+
"./strapi-admin": {
|
|
9
|
+
"types": "./dist/admin/src/index.d.ts",
|
|
10
|
+
"source": "./admin/src/index.ts",
|
|
11
|
+
"import": "./dist/admin/index.mjs",
|
|
12
|
+
"require": "./dist/admin/index.js",
|
|
13
|
+
"default": "./dist/admin/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./strapi-server": {
|
|
16
|
+
"types": "./dist/server/src/index.d.ts",
|
|
17
|
+
"source": "./server/src/index.ts",
|
|
18
|
+
"import": "./dist/server/index.mjs",
|
|
19
|
+
"require": "./dist/server/index.js",
|
|
20
|
+
"default": "./dist/server/index.js"
|
|
21
|
+
}
|
|
22
|
+
},
|
|
23
|
+
"files": [
|
|
24
|
+
"dist"
|
|
25
|
+
],
|
|
26
|
+
"scripts": {
|
|
27
|
+
"build": "strapi-plugin build",
|
|
28
|
+
"watch": "strapi-plugin watch",
|
|
29
|
+
"watch:link": "strapi-plugin watch:link",
|
|
30
|
+
"verify": "strapi-plugin verify",
|
|
31
|
+
"test:ts:front": "run -T tsc -p admin/tsconfig.json",
|
|
32
|
+
"test:ts:back": "run -T tsc -p server/tsconfig.json"
|
|
33
|
+
},
|
|
34
|
+
"dependencies": {
|
|
35
|
+
"@strapi/design-system": "^2.0.0-rc.30",
|
|
36
|
+
"@strapi/icons": "^2.0.0-rc.30",
|
|
37
|
+
"openai": "^6.22.0",
|
|
38
|
+
"react-intl": "^8.1.1"
|
|
39
|
+
},
|
|
40
|
+
"devDependencies": {
|
|
41
|
+
"@strapi/sdk-plugin": "^5.4.0",
|
|
42
|
+
"@strapi/strapi": "^5.33.3",
|
|
43
|
+
"@strapi/typescript-utils": "^5.33.3",
|
|
44
|
+
"@types/react": "^19.2.9",
|
|
45
|
+
"@types/react-dom": "^19.2.3",
|
|
46
|
+
"prettier": "^3.8.0",
|
|
47
|
+
"react": "^18.3.1",
|
|
48
|
+
"react-dom": "^18.3.1",
|
|
49
|
+
"react-router-dom": "^6.30.3",
|
|
50
|
+
"styled-components": "^6.3.8",
|
|
51
|
+
"typescript": "^5.9.3"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"@strapi/sdk-plugin": "^5.4.0",
|
|
55
|
+
"@strapi/strapi": "^5.33.3",
|
|
56
|
+
"react": "^18.3.1",
|
|
57
|
+
"react-dom": "^18.3.1",
|
|
58
|
+
"react-router-dom": "^6.30.3",
|
|
59
|
+
"styled-components": "^6.3.8"
|
|
60
|
+
},
|
|
61
|
+
"strapi": {
|
|
62
|
+
"kind": "plugin",
|
|
63
|
+
"name": "faqchatbot",
|
|
64
|
+
"displayName": "FaqChatbot Configuration",
|
|
65
|
+
"description": "A plugin for integrating ai chatbot"
|
|
66
|
+
},
|
|
67
|
+
"name": "strapi-plugin-faqchatbot",
|
|
68
|
+
"description": "A plugin for integrating ai chatbot",
|
|
69
|
+
"license": "MIT",
|
|
70
|
+
"repository": {
|
|
71
|
+
"type": "git",
|
|
72
|
+
"url": "https://github.com/sruthialex12345/faq-backend.git"
|
|
73
|
+
},
|
|
74
|
+
"bugs": {
|
|
75
|
+
"url": "https://github.com/sruthialex12345/faq-backend/issues"
|
|
76
|
+
},
|
|
77
|
+
"homepage": "https://github.com/sruthialex12345/faq-backend#readme",
|
|
78
|
+
"author": "Sruthi Alex <sruthi.alex@nustartz.in>"
|
|
79
|
+
}
|