-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 885 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 885 Bytes
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
{
"name": "@inference-net/provider-conversions",
"version": "0.0.1",
"license": "MIT",
"type": "module",
"packageManager": "yarn@4.11.0",
"main": "./dist/inference-net-provider-conversions.cjs",
"module": "./dist/inference-net-provider-conversions.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/inference-net-provider-conversions.js",
"require": "./dist/inference-net-provider-conversions.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && vite build",
"test": "vitest",
"test:run": "vitest run"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.71.0",
"@google/genai": "^1.30.0",
"ai": "^5.0.102",
"openai": "^6.9.1",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.14"
}
}