-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.68 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.68 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
{
"name": "pi-downshift",
"version": "0.2.12",
"description": "Start premium. Finish cheap. Downshift cuts long Pi Coding Agent session costs by switching from your premium model to an economy model when context gets expensive.",
"type": "module",
"main": "index.ts",
"exports": {
".": "./index.ts"
},
"files": [
"index.ts",
"src/downshift.ts",
"src/downshift-core.ts",
"banner.jpg",
"README.md",
"LICENSE"
],
"keywords": [
"pi-package",
"pi-extension",
"pi-coding-agent",
"model-switching",
"context-window",
"llm",
"token-cost",
"subagents"
],
"pi": {
"extensions": [
"./index.ts"
],
"image": "https://raw.githubusercontent.com/boadij/pi-downshift/main/banner.jpg"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"check": "npm run typecheck && npm test",
"release:dry": "npm run check && npm pack --dry-run",
"prepublishOnly": "npm run check",
"release:as": "node scripts/release-as.mjs"
},
"peerDependencies": {
"@earendil-works/pi-ai": "*",
"@earendil-works/pi-coding-agent": "*"
},
"devDependencies": {
"@earendil-works/pi-ai": "^0.78.0",
"@earendil-works/pi-coding-agent": "^0.78.0",
"@types/node": "^25.9.1",
"typescript": "^6.0.3",
"vitest": "^4.1.8"
},
"publishConfig": {
"access": "public"
},
"author": "Jeffrey Boadi",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/boadij/pi-downshift.git"
},
"bugs": {
"url": "https://github.com/boadij/pi-downshift/issues"
},
"homepage": "https://github.com/boadij/pi-downshift#readme"
}