forked from agustif/opencode-lmstudio
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
121 lines (121 loc) · 3.06 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-model-scout",
"version": "1.4.0",
"description": "opencode plugin that auto-discovers models from OpenAI-compatible providers and enriches them with context window sizes, capability flags, and model metadata. Supports Ollama, oMLX, vLLM, TGI, SGLang, LM Studio, KoboldCpp, llama.cpp, and LocalAI.",
"type": "module",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./server": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./tui": {
"types": "./dist/tui.d.ts",
"import": "./dist/tui.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"format:check": "prettier . --check",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"check": "npm run typecheck && npm run lint && npm run format:check && npm run test:run",
"fix": "npm run lint:fix && npm run format",
"compile": "tsup src/index.ts src/tui.ts --format esm --dts --out-dir dist --clean --external @opentui/core --external @opentui/keymap --external @opentui/solid",
"build": "npm run check && npm run compile",
"prepack": "npm run compile"
},
"lint-staged": {
"*.ts": [
"eslint --fix --max-warnings=0 --no-warn-ignored",
"prettier --write"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
},
"keywords": [
"opencode",
"opencode-plugin",
"model-discovery",
"openai-compatible",
"ollama",
"omlx",
"vllm",
"tgi",
"sglang",
"lmstudio",
"lm-studio",
"koboldcpp",
"llama-cpp",
"llamacpp",
"localai",
"local-ai",
"llm",
"local-llm",
"plugin",
"auto-discovery",
"context-window",
"model-server",
"inference-server"
],
"author": "maelos",
"publishConfig": {
"access": "public",
"provenance": true
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/rmk40/opencode-model-scout.git"
},
"dependencies": {
"@opencode-ai/plugin": "^1.17.7"
},
"peerDependencies": {
"@opentui/core": "0.3.4",
"@opentui/keymap": "0.3.4",
"@opentui/solid": "0.3.4"
},
"peerDependenciesMeta": {
"@opentui/core": {
"optional": true
},
"@opentui/keymap": {
"optional": true
},
"@opentui/solid": {
"optional": true
}
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@opentui/core": "0.3.4",
"@opentui/keymap": "0.3.4",
"@opentui/solid": "0.3.4",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.8.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.1",
"vitest": "^4.0.16"
}
}