-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 945 Bytes
/
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
{
"name": "smooth-output",
"version": "1.0.4",
"description": "Make the output smoother~ (commonly used for handling SSE text output scenarios)",
"repository": {
"type": "git",
"url": "https://github.com/hurryhuang1007/smooth-output"
},
"homepage": "https://github.com/hurryhuang1007/smooth-output#readme",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"scripts": {
"dev": "father dev",
"build": "father build",
"build:deps": "father prebundle",
"prepublishOnly": "father doctor && npm run build",
"doctor": "father doctor"
},
"keywords": [
"stream",
"sse",
"output",
"smooth",
"text",
"llm"
],
"authors": [
"hurry"
],
"license": "MIT",
"files": [
"dist",
"compiled"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"father": "^4.5.0-rc.2"
},
"dependencies": {
"@babel/runtime": "^7.24.8"
}
}