-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "chat-server",
"version": "0.0.0",
"private": true,
"type": "module",
"main": "src/index.ts",
"scripts": {
"build": "npx tsc",
"dev": "nodemon --exec tsx src/index.ts",
"lint": "npx eslint src",
"prepare": "npm run build",
"prettier:": "npm run prettier:write",
"prettier:check": "npx prettier --check .",
"prettier:write": "npx prettier --write .",
"start": "node dist/index.js",
"tsc": "npx tsc --noEmit"
},
"dependencies": {
"@ai-sdk/anthropic": "^3.0.82",
"@ai-sdk/google": "^3.0.80",
"@ai-sdk/openai": "^3.0.69",
"@ai-sdk/openai-compatible": "^2.0.48",
"ai": "^6.0.199",
"cors": "^2.8.6",
"dotenv": "^17.4.2",
"express": "^5.2.1",
"picomatch": "^4.0.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/node": "^25.9.2",
"@types/picomatch": "^4.0.3",
"eslint": "^10.4.1",
"nodemon": "^3.1.14",
"prettier": "^3.8.4",
"tsx": "^4.22.4",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.0"
}
}