-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 981 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 981 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
33
34
35
36
{
"name": "llm-router-project",
"version": "1.0.0",
"description": "Intelligent routing between local Ollama and public LLMs for cost and privacy optimization.",
"main": "llm-router.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"format": "prettier --write .",
"helper:comment": "node scripts/local-llm-helper.js comment",
"helper:explain": "node scripts/local-llm-helper.js explain",
"helper:test": "node scripts/local-llm-helper.js test"
},
"keywords": [
"llm",
"ollama",
"qwen",
"deepseek",
"automation",
"privacy"
],
"author": "Richard",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"eslint": "^9.0.0",
"prettier": "^3.2.0"
},
"engines": {
"node": ">=18.0.0"
}
}