-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.87 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@saladtechnologies-oss/ai-sdk-provider",
"version": "0.1.0",
"type": "module",
"sideEffects": false,
"license": "Apache-2.0",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"default": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"NOTICE",
"dist",
"src",
"!src/**/*.test.ts"
],
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saladtechnologies/ai-sdk-provider.git"
},
"bugs": {
"url": "https://github.com/saladtechnologies/ai-sdk-provider/issues"
},
"homepage": "https://github.com/saladtechnologies/ai-sdk-provider",
"keywords": [
"ai",
"ai-sdk",
"salad-cloud",
"saladcloud",
"vercel-ai-sdk",
"provider"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --splitting --clean --sourcemap",
"test": "vitest run",
"test:edge": "vitest run --config vitest.edge.config.js",
"type-check": "tsc --noEmit",
"lint": "eslint src/"
},
"dependencies": {
"@ai-sdk/provider": "^4.0.0-beta.14",
"@ai-sdk/provider-utils": "^5.0.0-beta.30"
},
"peerDependencies": {
"zod": "^3.25.76 || ^4.1.8"
},
"devDependencies": {
"@edge-runtime/vm": "^5.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"@vitest/coverage-v8": "^3.0.0",
"ai": "^7.0.0-beta.116",
"eslint": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-vitest": "^0.5.0",
"testcontainers": "^11.0.0",
"tsup": "^8.0.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
}
}