-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
79 lines (79 loc) · 1.93 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
77
78
79
{
"name": "nextjs-openai",
"version": "7.2.0",
"license": "MIT",
"type": "module",
"files": [
"dist"
],
"types": "./dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./*": "./dist/*/index.js"
},
"scripts": {
"export": "tsmodule build",
"docs": "pnpm typedoc src",
"dev": "next dev",
"prebuild": "pnpm docs",
"build": "next build",
"start": "next start",
"lint": "next lint --fix",
"pretest": "tsmodule build",
"test": "ava",
"prepublishOnly": "pnpm export && pnpm test",
"canary": "pnpm build && npm version prerelease --preid canary && pnpm publish --tag canary"
},
"devDependencies": {
"@tsmodule/react": "^12.0.0",
"@tsmodule/tsmodule": "^44.3.0",
"@types/node": "^18.16.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"autoprefixer": "^10.4.14",
"ava": "^5.2.0",
"cssnano": "^6.0.1",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.4",
"next": "^13.3.4",
"postcss": "^8.4.23",
"postcss-import": "^15.1.0",
"release-it": "^15.10.2",
"tailwindcss": "^3.3.2",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
},
"dependencies": {
"eventsource-parser": "^1.0.0",
"openai-streams": "^5.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"yield-stream": "^3.0.0"
},
"engines": {
"node": ">=14"
},
"keywords": [
"nextjs",
"openai",
"react",
"typescript",
"streams",
"gpt-3"
],
"description": "Hooks and components for working with OpenAI streams.",
"homepage": "https://github.com/SpellcraftAI/nextjs-openai",
"release-it": {
"git": {
"commitMessage": "release: v${version}",
"tagAnnotation": "v${version}"
},
"github": {
"release": true,
"releaseName": "v${version}"
}
}
}