-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
78 lines (78 loc) · 1.74 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
{
"name": "@chatscope/use-chat",
"version": "3.1.2",
"description": "React hook for state management in chat applications",
"license": "MIT",
"homepage": "https://chatscope.io/",
"keywords": [
"chat",
"headless",
"hook",
"react",
"reactjs",
"ui",
"user interface",
"components",
"ui kit",
"communication",
"conversation",
"toolkit",
"library",
"frontend",
"reusable",
"social",
"talk"
],
"repository": {
"type": "git",
"url": "https://github.com/chatscope/use-chat.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.5",
"@types/prop-types": "15.7.5",
"@types/react": "^18.0.15",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.30.6",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.7.1",
"semantic-release": "^19.0.3",
"typescript": "4.7.4"
},
"peerDependencies": {
"react": ">= 17.0 <= 18.2.0"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch"
},
"dependencies": {
"prop-types": "15.8.1",
"rxjs": "6.6.7"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"packageManager": "yarn@3.2.1"
}