chat-nest-sdk 1.0.0 → 1.0.1
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/package.json +17 -9
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chat-nest-sdk",
|
|
3
|
-
"
|
|
3
|
+
"description": "Frontend React SDK for consuming streaming AI APIs with cancellation and retry safety.",
|
|
4
|
+
"version": "1.0.1",
|
|
4
5
|
"type": "module",
|
|
5
6
|
"main": "dist/index.js",
|
|
6
7
|
"types": "dist/index.d.ts",
|
|
@@ -8,23 +9,22 @@
|
|
|
8
9
|
"bugs": {
|
|
9
10
|
"url": "https://github.com/shivams10/chat-nest/issues"
|
|
10
11
|
},
|
|
11
|
-
"repository": {
|
|
12
|
-
"type": "git",
|
|
13
|
-
"url": "https://github.com/shivams10/chat-nest"
|
|
14
|
-
},
|
|
15
12
|
"files": [
|
|
16
13
|
"dist"
|
|
17
14
|
],
|
|
18
15
|
"scripts": {
|
|
19
16
|
"build": "tsup src/index.ts --format esm --dts --external react --external react-dom",
|
|
20
17
|
"dev": "tsup src/index.ts --format esm --watch --external react --external react-dom",
|
|
21
|
-
"clean": "rm -rf dist",
|
|
18
|
+
"clean": "rm -rf dist",
|
|
22
19
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
23
20
|
},
|
|
24
|
-
"keywords": [],
|
|
25
21
|
"author": "Shivam Shukla",
|
|
22
|
+
"repository": {
|
|
23
|
+
"type": "git",
|
|
24
|
+
"url": "git+https://github.com/shivams10/chat-nest.git",
|
|
25
|
+
"directory": "packages/chat-nest-sdk"
|
|
26
|
+
},
|
|
26
27
|
"license": "ISC",
|
|
27
|
-
"description": "",
|
|
28
28
|
"sideEffects": false,
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"@types/react": "^19.2.8",
|
|
@@ -43,5 +43,13 @@
|
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"chat-nest-core": "*"
|
|
46
|
-
}
|
|
46
|
+
},
|
|
47
|
+
"keywords": [
|
|
48
|
+
"ai",
|
|
49
|
+
"react",
|
|
50
|
+
"sdk",
|
|
51
|
+
"openai",
|
|
52
|
+
"streaming",
|
|
53
|
+
"chatbot"
|
|
54
|
+
]
|
|
47
55
|
}
|