forked from chatscope/use-chat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 1.93 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
{
"name": "@wearemothership/use-chat",
"version": "3.3.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"
],
"author": "supersnager <[email protected]> (https://chatscope.io)",
"contributors": [
"vespasianvs <[email protected]> (https://wearemothership.com)",
"kalabro <[email protected]> (https://kalabro.tech/)"
],
"repository": {
"type": "git",
"url": "https://github.com/wearemothership/use-chat.git"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@eslint/compat": "^1.2.3",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/node": "20",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"eslint-plugin-react-hooks": "^5.0.0",
"globals": "^15.12.0",
"husky": ">=9",
"lint-staged": ">=15",
"prettier": "3.3.3",
"rimraf": "^6.0.1",
"typescript": "5.6.3"
},
"peerDependencies": {
"react": "^18"
},
"scripts": {
"build": "rimraf dist && tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm run build"
},
"dependencies": {
"rxjs": "7.8.1"
},
"lint-staged": {
"./src/**/*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"files": [
"dist",
"src"
],
"publishConfig": {
"access": "public"
},
"packageManager": "[email protected]"
}