-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathpackage.json
80 lines (80 loc) · 1.81 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
{
"name": "@chatscope/use-chat",
"version": "1.4.0",
"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": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.2",
"@types/prop-types": "^15.7.3",
"@types/react": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^4.21.0",
"@typescript-eslint/parser": "^4.21.0",
"eslint": "^7.23.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-react": "^7.23.1",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": ">=6",
"lint-staged": ">=10",
"prettier": "2.2.1",
"react": "^17.0.2",
"semantic-release": "^17.4.2",
"typescript": "^4.2.3"
},
"scripts": {
"build": "npx tsc",
"watch": "npx tsc --watch"
},
"dependencies": {
"@types/nanoid": "^2.1.0",
"nanoid": "3.1.22",
"prop-types": "15.7.2",
"rxjs": "6.6.7"
},
"peerDependencies": {
"react": "^17.0.2"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}