forked from EvolvingPrograms/openai-streams
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.2 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.2 KB
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
{
"name": "openai-streams",
"description": "Streams-first OpenAI API client, written in TypeScript.",
"version": "1.0.10",
"license": "MIT",
"type": "module",
"platform": "node",
"engines": {
"node": ">=18"
},
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./*": "./dist/*/index.js"
},
"scripts": {
"dev": "tsmodule dev",
"docs": "yarn typedoc src",
"prebuild": "yarn docs",
"build": "tsmodule build",
"test": "ava",
"pretest": "yarn build",
"prepublishOnly": "yarn test",
"lint": "eslint src --fix"
},
"devDependencies": {
"@tsmodule/tsmodule": "^41.28.0",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"ava": "^5.2.0",
"eslint": "^8.34.0",
"openai": "^3.1.0",
"typedoc": "^0.23.25",
"typescript": "^4.9.5"
},
"dependencies": {
"dotenv": "^16.0.3",
"eventsource-parser": "^0.1.0",
"yield-stream": "^2.0.4"
},
"keywords": [
"openai",
"openai-ts",
"streams",
"gpt-3"
],
"homepage": "https://github.com/gptlabs/openai-streams"
}