@talkjs/core 0.0.6 → 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/dist/talkSession.cjs +1 -1
- package/dist/talkSession.js +161 -163
- package/package.json +3 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@talkjs/core",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "Lets you connect to your TalkJS chat as a user and read, subscribe to, and update your chat data.",
|
|
5
5
|
"bugs": {
|
|
6
6
|
"url": "https://talkjs.com/?chat"
|
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"test": "vitest run",
|
|
31
31
|
"test:ci": "vitest run --mode production",
|
|
32
32
|
"test:watch": "vitest",
|
|
33
|
+
"package:prepare": "yarn typecheck && yarn lint && yarn test && yarn build",
|
|
33
34
|
"build": "vite build"
|
|
34
35
|
},
|
|
35
36
|
"devDependencies": {
|
|
@@ -68,4 +69,4 @@
|
|
|
68
69
|
"notification",
|
|
69
70
|
"notifications"
|
|
70
71
|
]
|
|
71
|
-
}
|
|
72
|
+
}
|