-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.18 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
{
"name": "omp-claude-bridge",
"version": "0.8.1",
"private": false,
"description": "Oh My Pi extension that runs Claude Code (via the Claude Agent SDK) as a model provider, adds an AskClaude delegation tool, and lets you force the 1M / 200K context window per provider.",
"keywords": [
"omp-package",
"oh-my-pi",
"extension",
"claude-code",
"claude-agent-sdk",
"context-window",
"1m-context"
],
"author": "Jonathan Borgwing (https://github.com/DevVig)",
"contributors": [
"Eli Dickinson (original pi-claude-bridge author, https://github.com/elidickinson)"
],
"license": "MIT",
"homepage": "https://github.com/DevVig/omp-claude-bridge#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/DevVig/omp-claude-bridge.git"
},
"bugs": {
"url": "https://github.com/DevVig/omp-claude-bridge/issues"
},
"engines": {
"node": ">=20"
},
"files": [
"src",
"README.md",
"LICENSE",
"NOTICE",
"tsconfig.json",
"assets"
],
"scripts": {
"test": "node --import tsx --test tests/unit-*.mjs",
"test:unit": "node --import tsx --test tests/unit-*.mjs",
"typecheck": "tsc --noEmit"
},
"type": "module",
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.2.141",
"@anthropic-ai/sdk": "^0.73.0",
"cc-session-io": "^0.3.1",
"change-case": "^5.4.4",
"typebox": "^1.3.0"
},
"peerDependencies": {
"@oh-my-pi/pi-ai": ">=16.3.6",
"@oh-my-pi/pi-agent-core": ">=16.3.6",
"@oh-my-pi/pi-coding-agent": ">=16.3.6",
"@oh-my-pi/pi-tui": ">=16.3.6",
"@oh-my-pi/pi-utils": ">=16.3.6"
},
"peerDependenciesMeta": {
"@oh-my-pi/pi-ai": {
"optional": true
},
"@oh-my-pi/pi-agent-core": {
"optional": true
},
"@oh-my-pi/pi-coding-agent": {
"optional": true
},
"@oh-my-pi/pi-tui": {
"optional": true
},
"@oh-my-pi/pi-utils": {
"optional": true
}
},
"devDependencies": {
"@oh-my-pi/pi-ai": "^16.3.6",
"@oh-my-pi/pi-agent-core": "^16.3.6",
"@oh-my-pi/pi-coding-agent": "^16.3.6",
"@oh-my-pi/pi-tui": "^16.3.6",
"@oh-my-pi/pi-utils": "^16.3.6",
"@types/node": "^24.13.2",
"tsx": "^4.22.4",
"typescript": "^6.0.3"
},
"trustedDependencies": [
"esbuild"
],
"omp": {
"extensions": [
"./src/index.ts"
]
}
}