-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.56 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.56 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "opencode-models-discovery",
"version": "1.5.1",
"description": "OpenCode plugin for auto-discovery of OpenAI-compatible models with dynamic provider configuration",
"type": "module",
"main": "./src/index.ts",
"exports": {
".": "./src/index.ts"
},
"files": [
"src"
],
"scripts": {
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"build": "npm run typecheck && npm run test:run",
"validate": "npm run lint && npm run typecheck && npm run test:run",
"validate:config": "bun scripts/validate-config.ts",
"release": "bun scripts/release.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"opencode",
"openai-compatible",
"model-discovery",
"plugin",
"local-llm",
"ollama",
"lmstudio",
"lm-studio",
"localai"
],
"author": "",
"license": "MIT",
"engines": {
"opencode": ">=1.4.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuhp/opencode-models-discovery.git"
},
"dependencies": {
"xdg-basedir": "^5.1.0"
},
"peerDependencies": {
"@opencode-ai/plugin": ">=1.4.0"
},
"devDependencies": {
"@opencode-ai/plugin": "^1.17.10",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}