-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.97 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.97 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
77
78
{
"name": "@mantey/saia-ai-sdk",
"version": "0.1.0",
"description": "Vercel AI SDK provider for GWDG's SAIA (Scalable Artificial Intelligence Accelerator) API",
"keywords": [
"ai",
"ai-sdk",
"vercel",
"vercel-ai",
"saia",
"gwdg",
"openai",
"typescript",
"openai-compatible"
],
"author": "Daniel Mantey <contactmantey@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mantey-github/saia-ai-sdk.git"
},
"type": "module",
"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"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"sideEffects": false,
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"format": "prettier --write \"src/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\"",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run lint && npm run test && npm run build"
},
"peerDependencies": {},
"dependencies": {
"@ai-sdk/openai-compatible": "^1.0.19",
"@ai-sdk/provider": "^2.0.0",
"@ai-sdk/provider-utils": "^3.0.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"ai": "^5.0.29",
"dotenv": "^17.2.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.4.2",
"prettier-plugin-packagejson": "^2.5.6",
"tsup": "^8.3.5",
"tsx": "^4.20.6",
"typescript": "^5.7.2",
"vitest": "^2.1.8",
"zod": "^4.1.5"
},
"engines": {
"node": ">=18.0.0"
}
}