-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 2.99 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "@chatui/core",
"version": "0.3.2",
"description": "The React library for Chatbot UI",
"main": "lib/index.js",
"module": "es/index.js",
"browser": "dist/index.js",
"style": "dist/index.css",
"typings": "lib/index.d.ts",
"files": [
"dist",
"es",
"lib"
],
"scripts": {
"build": "gulp && npm run build:types",
"build:types": "tsc -p tsconfig.build.json",
"build:umd": "BABEL_ENV=umd rollup -c && gulp umd",
"prepublishOnly": "npm run build & npm run build:umd",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@babel/runtime": "^7.12.5",
"@babel/runtime-corejs3": "^7.12.5",
"clsx": "^1.1.1",
"core-js": "^3.8.1",
"dompurify": "^1.0.11",
"intersection-observer": "^0.12.0"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.2.2",
"@types/dompurify": "^2.1.0",
"@types/jest": "^26.0.19",
"@types/react": "^17.0.0",
"@types/react-dom": "^17.0.0",
"@types/resize-observer-browser": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^4.11.1",
"autoprefixer": "^10.1.0",
"babel-eslint": "^10.1.0",
"cssnano": "^4.1.10",
"eslint": "^7.17.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-less": "^4.0.1",
"gulp-postcss": "^9.0.0",
"husky": "^4.3.6",
"jest": "^26.6.3",
"less": "^3.13.1",
"postcss": "^8.2.2",
"react": "16.8.0",
"react-dom": "16.8.0",
"rollup": "^2.35.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
},
"browserslist": [
">0.2%",
"Android >= 4.4",
"not dead",
"not op_mini all"
],
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"react",
"react-component",
"chat",
"chat-ui"
],
"homepage": "https://chatui.io/",
"bugs": {
"url": "https://github.com/alibaba/ChatUI/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/alibaba/ChatUI"
},
"author": "akai <akainice@gmail.com>",
"license": "MIT"
}