-
Notifications
You must be signed in to change notification settings - Fork 151
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.39 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.39 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
95
96
97
98
99
100
101
102
103
104
105
{
"name": "pi-mcp-adapter",
"version": "2.9.0",
"description": "MCP (Model Context Protocol) adapter extension for Pi coding agent",
"type": "module",
"license": "MIT",
"author": "Nico Bailon",
"bin": {
"pi-mcp-adapter": "cli.js"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:oauth-provider": "node --import tsx --test mcp-oauth-provider.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicobailon/pi-mcp-adapter.git"
},
"keywords": [
"pi-package",
"pi",
"mcp",
"model-context-protocol",
"ai",
"coding-agent",
"extension",
"claude",
"llm"
],
"pi": {
"extensions": [
"./index.ts"
],
"video": "https://github.com/nicobailon/pi-mcp-adapter/raw/refs/heads/main/pi-mcp.mp4"
},
"files": [
"cli.js",
"agent-dir.ts",
"index.ts",
"state.ts",
"utils.ts",
"tool-metadata.ts",
"init.ts",
"ui-session.ts",
"proxy-modes.ts",
"direct-tools.ts",
"commands.ts",
"onboarding-state.ts",
"mcp-setup-panel.ts",
"types.ts",
"ui-stream-types.ts",
"config.ts",
"server-manager.ts",
"sampling-handler.ts",
"elicitation-handler.ts",
"tool-registrar.ts",
"tool-result-renderer.ts",
"resource-tools.ts",
"lifecycle.ts",
"metadata-cache.ts",
"host-html-template.ts",
"ui-resource-handler.ts",
"consent-manager.ts",
"ui-server.ts",
"glimpse-ui.ts",
"npx-resolver.ts",
"oauth-handler.ts",
"mcp-auth.ts",
"mcp-oauth-provider.ts",
"mcp-callback-server.ts",
"mcp-auth-flow.ts",
"mcp-panel.ts",
"logger.ts",
"errors.ts",
"app-bridge.bundle.js",
"banner.png",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"dependencies": {
"@earendil-works/pi-ai": "^0.74.0",
"@earendil-works/pi-tui": "^0.74.0",
"@modelcontextprotocol/ext-apps": "^1.2.2",
"@modelcontextprotocol/sdk": "^1.25.1",
"open": "^10.2.0",
"recheck": "^4.5.0",
"typebox": "^1.1.24",
"zod": "^3.25.0 || ^4.0.0"
},
"peerDependencies": {
"zod": "^3.25.0 || ^4.0.0"
},
"devDependencies": {
"@earendil-works/pi-coding-agent": "^0.74.0",
"@types/bun": "^1.0.0",
"@types/node": "^20.0.0",
"@types/open": "^6.2.1",
"tsx": "^4.21.0",
"typescript": "^5.0.0",
"vitest": "^3.0.0"
}
}