forked from OpenRouterTeam/ai-sdk-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.98 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.98 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
{
"name": "@openrouter/ai-sdk-provider",
"version": "0.2.0",
"license": "Apache-2.0",
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist/**/*",
"internal/dist/**/*"
],
"scripts": {
"build": "tsup",
"clean": "rm -rf dist && rm -rf internal/dist",
"dev": "tsup --watch",
"lint": "eslint \"./**/*.ts*\"",
"type-check": "tsc --noEmit",
"prettier-check": "prettier --check \"./**/*.ts*\"",
"prepublish": "pnpm run build",
"test": "pnpm test:node && pnpm test:edge",
"test:edge": "vitest --config vitest.edge.config.js --run",
"test:node": "vitest --config vitest.node.config.js --run"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./internal": {
"types": "./internal/dist/index.d.ts",
"import": "./internal/dist/index.mjs",
"module": "./internal/dist/index.mjs",
"require": "./internal/dist/index.js"
}
},
"dependencies": {
"@ai-sdk/provider": "1.0.6",
"@ai-sdk/provider-utils": "2.1.5"
},
"devDependencies": {
"@edge-runtime/vm": "5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.12.0",
"tsup": "8.3.6",
"typescript": "5.7.3",
"vitest": "3.0.4",
"zod": "3.24.1"
},
"peerDependencies": {
"zod": "^3.0.0"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/OpenRouterTeam/ai-sdk-provider",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenRouterTeam/ai-sdk-provider.git"
},
"bugs": {
"url": "https://github.com/OpenRouterTeam/ai-sdk-provider/issues"
},
"keywords": [
"ai"
],
"packageManager": "pnpm@9.15.0+sha512.76e2379760a4328ec4415815bcd6628dee727af3779aaa4c914e3944156c4299921a89f976381ee107d41f12cfa4b66681ca9c718f0668fa0831ed4c6d8ba56c"
}