forked from tjtanjin/react-chatbotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.61 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
{
"name": "react-chatbotify",
"homepage": "https://react-chatbotify.com",
"keywords": [
"react",
"chat",
"chatbot",
"conversational-bot",
"conversational-ui",
"frontend-library"
],
"files": [
"./dist"
],
"version": "2.0.0-beta.26",
"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": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"lint": "eslint --fix . --ext .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/tjtanjin/react-chatbotify"
},
"peerDependencies": {
"react": ">=16.14.0 <20.0.0 || ^19.0.0-0",
"react-dom": ">=16.14.0 <20.0.0 || ^19.0.0-0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.6.2",
"@testing-library/react": "^16.0.1",
"@types/dom-speech-recognition": "^0.0.4",
"@types/jest": "^29.5.13",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@vitejs/plugin-react": "^4.0.4",
"cypress": "^13.14.2",
"cypress-file-upload": "^5.0.8",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"ts-jest": "^29.2.5",
"typescript": "^5.1.6",
"vite": "^4.5.2",
"vite-plugin-eslint2": "^4.4.2",
"vite-plugin-svgr": "^3.2.0"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}