mirror of
https://github.com/status-im/status-web.git
synced 2025-01-19 17:09:48 +00:00
030a33f95a
* Rename DappConnect to Waku Connect * Remove redundant qualifier on CommunityChat * Rename `Chat` to `ChatRoom` There are two components: - `CommunityChatRoom` (prev. `Chat`) contains the chat room, channels, members. -`CommunityChat` wrap `ChatRoom` is the various provider. A consumer would most likely use `CommunityChat` directly. If they want to swap a provider, they'd use `CommunityChatRoom` * Rename `GroupChat` to `GroupChatRoom` * Rename `DappConnectGroupChat` to `GroupChat` There are two components: - `GroupChatRoom` (prev. `GroupChat`) contains the chat room, members. - `GroupChat` wrap `GroupChatRoom` is the various provider. A consumer would most likely use `GroupChat` directly. If they want to swap a provider, they'd use `GroupChatRoom`. * Remove DappConnect qualifier
24 lines
541 B
JSON
24 lines
541 B
JSON
{
|
|
"name": "@waku/chat-sdk-root",
|
|
"packageManager": "yarn@3.1.0",
|
|
"license": "MIT OR Apache-2.0",
|
|
"scripts": {
|
|
"fix": "run-s 'fix:*' && wsrun -e -c -s fix",
|
|
"fix:prettier": "prettier \"./*.json\" --write",
|
|
"build": "wsrun -e -c -s build",
|
|
"test": "wsrun -e -c -s test",
|
|
"sc": "yarn workspace @waku/status-communities"
|
|
},
|
|
"devDependencies": {
|
|
"npm-run-all": "^4.1.5",
|
|
"prettier": "^2.3.2",
|
|
"wsrun": "^5.2.4"
|
|
},
|
|
"private": true,
|
|
"workspaces": {
|
|
"packages": [
|
|
"packages/*"
|
|
]
|
|
}
|
|
}
|