-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 982 Bytes
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 982 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
37
38
39
40
41
42
43
{
"name": "@nicknisi/pi-model-switch",
"version": "0.3.0",
"description": "Cycle or fuzzy-pick from a machine-local, sectioned list of preferred Pi models",
"keywords": [
"pi",
"pi-coding-agent",
"pi-package"
],
"homepage": "https://github.com/nicknisi/pi-extensions/tree/main/packages/model-switch#readme",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nicknisi/pi-extensions.git",
"directory": "packages/model-switch"
},
"files": [
"dist",
"index.ts",
"config.ts",
"cycle.ts",
"section-picker.ts",
"README.md",
"model-switch.example.json"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*",
"@earendil-works/pi-tui": "*"
},
"pi": {
"extensions": [
"./index.ts"
]
}
}