forked from react-chatbotify/react-chatbotify
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.98 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.98 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
{
"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.3",
"description": "A modern React library for creating a flexible and extensible chatbot.",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"lint": "eslint --fix . --ext .tsx",
"test": "node ./test/RunTests.js",
"build": "tsc && vite build && cp ./dist/index.d.ts ./dist/index.d.cts",
"prepublishOnly": "tsc && vite build && cp ./dist/index.d.ts ./dist/index.d.cts",
"prepack": "tsc && vite build && cp ./dist/index.d.ts ./dist/index.d.cts",
"start": "vite serve",
"prepare": "husky install"
},
"author": "tjtanjin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/tjtanjin/react-chatbotify"
},
"devDependencies": {
"@types/dom-speech-recognition": "^0.0.4",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@typescript-eslint/eslint-plugin": "^5.60.1",
"@vitejs/plugin-react": "^4.0.4",
"chromedriver": "^125.0.0",
"eslint": "^8.43.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"selenium-webdriver": "^4.21.0",
"typescript": "^5.1.6",
"vite": "^4.5.2",
"vite-plugin-dts": "^3.4.0",
"vite-plugin-eslint": "^1.8.1",
"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"
]
}
}