-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 754 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 754 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
{
"name": "model-specs",
"version": "0.1.0",
"description": "Community catalog of LLM model specs (pricing, context, capabilities) auto-synced from LiteLLM, plus corrections and AI-CLI compatibility lists.",
"type": "module",
"private": false,
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"sync": "node scripts/sync.mjs",
"build": "node scripts/build.mjs",
"validate": "node scripts/validate.mjs",
"all": "npm run sync && npm run build && npm run validate"
},
"keywords": [
"llm",
"model",
"specs",
"pricing",
"context-window",
"capabilities",
"litellm",
"catalog",
"ai-models"
],
"dependencies": {
"ajv": "^8.20.0",
"ajv-formats": "^3.0.1"
}
}