-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
76 lines (76 loc) · 1.74 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"author": "Spellcraft Inc. <[email protected]>",
"name": "openai-streams",
"description": "Tools for working with OpenAI streams in Node.js and TypeScript.",
"homepage": "https://github.com/SpellcraftAI/openai-streams",
"version": "6.1.0",
"license": "MIT",
"platform": "node",
"engines": {
"node": ">=14"
},
"types": "dist/index.d.ts",
"files": [
"dist",
"./node.*"
],
"exports": {
"./package.json": "./package.json",
"./node": {
"import": "./node.js",
"require": "./node.cjs"
},
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./*": {
"import": "./dist/*/index.js",
"require": "./dist/*/index.cjs"
}
},
"scripts": {
"dev": "tsmodule dev",
"export-docs": "pnpm typedoc src",
"export": "tsmodule build",
"cjs": "tsmodule build -b -f cjs",
"build": "pnpm export && pnpm export-docs",
"test": "ava",
"prepublishOnly": "pnpm test",
"lint": "eslint src --fix"
},
"devDependencies": {
"@tsmodule/tsmodule": "^44.5.0",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"@typescript-eslint/parser": "^5.59.6",
"ava": "^5.2.0",
"dotenv": "^16.0.3",
"eslint": "^8.41.0",
"node-fetch": "^3.3.1",
"openai": "^3.3.0",
"typedoc": "^0.24.7",
"typescript": "^5.0.4"
},
"dependencies": {
"eventsource-parser": "^1.0.0",
"yield-stream": "^3.0.0"
},
"keywords": [
"openai",
"typescript",
"streams",
"gpt-3",
"gpt-4"
],
"release-it": {
"git": {
"commitMessage": "release: v${version}",
"tagAnnotation": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
}
}
}