-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.6 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
{
"name": "@soolv/ai-chat-provider",
"version": "1.0.1",
"description": "",
"repository": {
"type": "git",
"url": "git+https://github.com/soolv/ai-chat-provider.git"
},
"type": "module",
"keywords": [
"ai",
"vercel-ai-sdk",
"useChat"
],
"license": "MIT",
"homepage": "https://github.com/soolv/ai-chat-provider#readme",
"bugs": "https://github.com/soolv/ai-chat-provider/issues",
"author": "Ingar Almklov <ingara@gmail.com>",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.tsx --format cjs,esm --dts",
"changeset": "changeset",
"changeset:status": "changeset status",
"ci:publish": "bun run build && changeset publish",
"ci:version": "changeset version",
"prepublishOnly": "bun run build",
"lint": "biome check",
"test": "vitest",
"test:watch": "vitest --watch"
},
"devDependencies": {
"@ai-sdk/provider-utils": "1.0.22",
"@ai-sdk/ui-utils": "0.0.50",
"@biomejs/biome": "1.9.4",
"@changesets/cli": "^2.27.9",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "14.5.2",
"@types/bun": "^1.1.10",
"@types/react": "^18.3.12",
"@vitejs/plugin-react": "4.3.3",
"bun-plugin-dts": "^0.3.0",
"jsdom": "25.0.1",
"tsup": "^8.3.5",
"vitest": "2.1.4"
},
"dependencies": {
"ai": "^3.4.16",
"react": "^18.3.1"
}
}