-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.67 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.67 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
90
91
92
93
94
95
96
97
{
"name": "react-chatbotify",
"homepage": "https://react-chatbotify.com",
"keywords": [
"react",
"chat",
"chatbot",
"conversational-bot",
"conversational-ui",
"frontend-library",
"react-chatbotify"
],
"files": [
"./dist"
],
"version": "2.5.0",
"description": "A modern React library for creating flexible and extensible chatbots.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"lint": "eslint --fix \"**/*.{ts,tsx}\"",
"build": "tsc && vite build && node ./scripts/post-build.js",
"prepublishOnly": "tsc && vite build && node ./scripts/post-build.js",
"prepack": "tsc && vite build && node ./scripts/post-build.js",
"start": "vite serve",
"prepare": "husky install",
"unit:test": "jest __tests__/",
"unit:test:single": "jest --findRelatedTests",
"unit:test:watch": "jest --watch __tests__/",
"unit:test:coverage": "jest --coverage __tests__/",
"int:test:open": "cypress open",
"int:test": "cypress run",
"validate:ssr": "node ./ssr/ssr-validate.js"
},
"author": "tjtanjin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/react-chatbotify/react-chatbotify"
},
"peerDependencies": {
"react": ">=16.14.0",
"react-dom": ">=16.14.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.0",
"@types/dom-speech-recognition": "^0.0.7",
"@types/jest": "^30.0.0",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.47.0",
"@vitejs/plugin-react": "^5.1.1",
"cypress": "^15.7.0",
"cypress-file-upload": "^5.0.8",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vite-plugin-eslint2": "^5.0.4",
"vite-plugin-svgr": "^4.5.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@rcb-plugins/input-validator": "^0.3.1"
}
}