-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 832 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 832 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
{
"name": "modelconfig",
"version": "0.1.0",
"description": "Resolver-only configuration and capability resolver layer for AI providers",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"config.schema.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "node ./scripts/build.mjs",
"clean": "node -e \"import('node:fs').then(fs=>fs.rmSync('dist',{recursive:true,force:true}))\"",
"test": "npm run build && node --test ./test/**/*.test.mjs",
"example:basic": "npm run build && node ./examples/basic/run.mjs",
"example:openai-sdk": "npm run build && node ./examples/with-openai-sdk/run.mjs",
"example:litellm": "npm run build && node ./examples/with-litellm/run.mjs"
},
"engines": {
"node": ">=22"
},
"license": "MIT"
}