-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.31 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "flperformance",
"version": "2.0.0",
"description": "Benchmark multiple LLMs running via Microsoft Foundry Local",
"main": "src/server/index.js",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"npm run client\"",
"server": "node src/server/index.js",
"client": "cd src/client && npm run dev",
"build": "cd src/client && npm run build",
"start": "npm run build && npm run server",
"setup": "npm install && cd src/client && npm install",
"check-foundry": "node scripts/check-foundry.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"keywords": [
"foundry-local",
"llm",
"benchmark",
"ai"
],
"author": "",
"license": "MIT",
"overrides": {
"node-domexception": "npm:domexception@latest"
},
"dependencies": {
"@azure/identity": "^4.0.0",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"foundry-local-sdk": "^0.9.0",
"openai": "^4.24.1",
"systeminformation": "^5.21.20",
"uuid": "^9.0.1",
"winston": "^3.11.0"
},
"optionalDependencies": {
"better-sqlite3": "^9.2.2"
},
"devDependencies": {
"@vitest/coverage-v8": "^4.0.18",
"concurrently": "^8.2.2",
"supertest": "^7.2.2",
"vitest": "^4.0.18"
}
}