-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.04 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
{
"name": "model-ops",
"version": "1.0.4",
"description": "ModelOps — track LLM usage, cost, latency and model performance",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md"
],
"scripts": {
"test": "jest",
"test:integration": "jest --testPathPattern=modelOps.spec",
"build": "tsc",
"start": "node dist/index.js"
},
"keywords": [
"LLM",
"cost",
"latency",
"tokens",
"token",
"performance",
"ai",
"model",
"optimization",
"ops",
"tracking"
],
"author": "",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/adipeleg/modelOps.git"
},
"homepage": "https://modelops.me",
"bugs": {
"url": "https://github.com/adipeleg/modelOps/issues"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"jest": "^29.6.1",
"jest-ts": "^1.1.22",
"ts-jest": "^29.4.11",
"typescript": "^6.0.3"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.106.0",
"@google/genai": "^2.10.0",
"axios": "^1.6.5",
"openai": "^6.44.0",
"dotenv": "^17.4.2"
}
}