-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.48 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.48 KB
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
{
"name": "@snf/qa-bot-core",
"version": "0.3.3",
"description": "A configurable chatbot setup for quick integration of RAG-powered Q&A and rating system",
"main": "./dist/qa-bot-core.umd.cjs",
"module": "./dist/qa-bot-core.js",
"exports": {
".": {
"import": "./dist/qa-bot-core.js",
"require": "./dist/qa-bot-core.umd.cjs"
},
"./standalone": "./dist/qa-bot-core.standalone.js",
"./styles": "./dist/qa-bot-core.css",
"./dist/qa-bot-core.css": "./dist/qa-bot-core.css"
},
"unpkg": "./dist/qa-bot-core.standalone.js",
"types": "./dist/types/index.d.ts",
"files": [
"dist",
"build"
],
"dependencies": {
"@rcb-plugins/html-renderer": "^0.3.1",
"@rcb-plugins/input-validator": "^0.3.0",
"@rcb-plugins/markdown-renderer": "^0.3.1",
"react-chatbotify": "^2.5.0",
"uuid": "^11.1.0"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@babel/preset-react": "^7.23.9",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.7",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@testing-library/react": "^13.4.0",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/uuid": "^9.0.0",
"customize-cra": "^1.0.0",
"react": "^18.3.1",
"react-app-rewired": "^2.2.1",
"react-dom": "^18.3.1",
"react-scripts": "5.0.1",
"rollup": "^4.9.6",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.6.0",
"typescript": "^5.3.0",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"build:lib": "rollup -c",
"prepublishOnly": "npm run build:lib",
"test": "react-app-rewired test"
},
"eslintConfig": {
"extends": "react-app",
"overrides": [
{
"files": ["*.ts", "*.tsx"],
"plugins": ["@typescript-eslint"]
}
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}