-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.46 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
{
"name": "copilot-byok-switcher",
"version": "0.1.0",
"description": "Cross-platform launcher for GitHub Copilot CLI custom model providers (BYOK), with interactive selection and automatic model defaults.",
"keywords": [
"github-copilot",
"copilot-cli",
"byok",
"bring-your-own-key",
"cli",
"model-switcher",
"ai-coding-agent",
"developer-tools"
],
"author": {
"name": "Michael Gasperini",
"url": "https://mikesoft.it"
},
"homepage": "https://github.com/TheStreamCode/copilot-byok-switcher#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/TheStreamCode/copilot-byok-switcher.git"
},
"bugs": {
"url": "https://github.com/TheStreamCode/copilot-byok-switcher/issues"
},
"type": "module",
"bin": {
"copilot-byok": "./bin/copilot-byok.mjs"
},
"files": [
"bin/",
"src/",
"examples/",
"docs/",
"schemas/",
"CHANGELOG.md",
"README.md",
"SECURITY.md",
"LICENSE"
],
"scripts": {
"test": "node --test",
"test:coverage": "node --test --experimental-test-coverage",
"lint": "eslint .",
"check": "npm run lint && npm test",
"prepack": "npm run check"
},
"engines": {
"node": ">=22.13.0"
},
"funding": "https://github.com/sponsors/TheStreamCode",
"license": "MIT",
"dependencies": {
"cross-spawn": "^7.0.6"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.8.0",
"globals": "^17.8.0"
}
}