-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.06 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.06 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
{
"name": "caseai-connect",
"version": "0.0.0",
"private": true,
"description": "",
"author": "",
"license": "UNLICENSED",
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"biome:check": "biome check --write --unsafe .",
"biome:ci": "biome ci .",
"typecheck": "turbo run typecheck",
"clean": "find . -name '.turbo' -type d -prune -exec rm -rf '{}' + && find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && rm -rf node_modules"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@repo/typescript-config": "*",
"@types/jest": "^30.0.0",
"turbo": "^2.5.8"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.5.0",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@ai-sdk/open-responses": "^1.0.4",
"@ai-sdk/openai": "^3.0.41",
"@ai-sdk/openai-compatible": "^2.0.35"
}
}