-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.11 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
{
"name": "ai-stream-multi",
"version": "0.2.2",
"description": "Allows you to stream multiple chunks of text and tool calls using Vercel AI SDK",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"ci:version": "changeset version",
"ci:publish": "tsc && changeset publish"
},
"keywords": [
"ai",
"stream",
"vercel"
],
"types": "dist/types/index.d.ts",
"author": "Ed Spencer",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"concurrently": "^8.2.2",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rollup": "^4.20.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-typescript2": "^0.36.0"
},
"dependencies": {
"@ai-sdk/openai": "^0.0.40",
"@ai-sdk/provider": "^0.0.14",
"@changesets/cli": "^2.27.7",
"ai": "^3.3.4",
"typescript": "^5.5.4"
}
}