-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.25 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.25 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
54
55
56
57
{
"name": "dify-ai-provider",
"version": "1.1.0",
"description": "Dify provider for Vercel AI SDK",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"prepublishOnly": "npm run build"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"keywords": [
"ai",
"dify",
"vercel-ai-sdk",
"dify-ai-provider"
],
"author": "Oscar Jiang <pengj0520@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/warmwind/dify-ai-provider.git"
},
"homepage": "https://github.com/warmwind/dify-ai-provider#readme",
"bugs": {
"url": "https://github.com/warmwind/dify-ai-provider/issues"
},
"publishConfig": {
"access": "public"
},
"license": "MIT",
"dependencies": {
"@ai-sdk/provider": "^2.0.0",
"@ai-sdk/provider-utils": "^3.0.3",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/node": "^20.11.5",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"vitest": "^1.0.0"
}
}