-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.06 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
{
"name": "mixedbread-ai-provider",
"version": "1.0.2",
"description": "Mixedbread AI Provider for running Mixedbread AI models with Vercel AI SDK",
"author": "Vivek Patel <me@patelvivek.dev>",
"license": "Apache-2.0",
"keywords": [
"ai",
"vercel-ai",
"mixedbread",
"embeddings"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"CHANGELOG.md"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist",
"check-exports": "attw --pack .",
"dev": "tsup --watch",
"lint": "eslint \"./**/*.ts*\"",
"type-check": "tsc --noEmit",
"format": "prettier --write .",
"check-format": "prettier --check .",
"test": "bun test:node && bun test:edge",
"test:edge": "vitest --config vitest.edge.config.js --run",
"test:node": "vitest --config vitest.node.config.js --run",
"ci": "bun run build && bun run check-format && bun run test",
"local-release": "changeset version && changeset publish",
"prepublishOnly": "npm run ci"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"dependencies": {
"@ai-sdk/provider": "^1.0.0",
"@ai-sdk/provider-utils": "^2.0.0"
},
"devDependencies": {
"@changesets/cli": "^2.27.9",
"@edge-runtime/vm": "^3.2.0",
"@types/node": "^18.19.64",
"prettier": "^3.3.3",
"tsup": "^8.3.5",
"typescript": "5.5.4",
"vite-tsconfig-paths": "^4.3.2",
"vitest": "^2.1.5",
"zod": "^3.23.8"
},
"peerDependencies": {
"zod": "^3.0.0"
},
"peerDependenciesMeta": {
"zod": {
"optional": true
}
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/patelvivekdev/mixedbread-ai-provider",
"repository": {
"type": "git",
"url": "git+https://github.com/patelvivekdev/mixedbread-ai-provider.git"
},
"bugs": {
"url": "https://github.com/patelvivekdev/mixedbread-ai-provider/issues"
}
}