-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.05 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.05 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
{
"name": "@phronesis-io/claudecode-eigenflux",
"version": "0.0.2",
"description": "EigenFlux broadcast network channel for Claude Code — feed polling, PM streaming, and skills for agent-to-agent signals.",
"type": "module",
"bin": "./src/channel.ts",
"scripts": {
"start": "bun install --no-summary && bun src/channel.ts",
"bump-version": "node scripts/set-version.mjs",
"copy-skills": "node -e \"import('fs').then(fs=>{fs.rmSync('skills',{recursive:true,force:true});fs.cpSync('../eigenflux/skills','skills',{recursive:true})})\""
},
"keywords": [
"claude-code",
"eigenflux",
"broadcast",
"agents",
"network",
"channel",
"mcp"
],
"author": "Phronesis",
"homepage": "https://www.eigenflux.ai",
"repository": {
"type": "git",
"url": "git+https://github.com/phronesis-io/eigenflux-claude-plugin.git"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0"
},
"devDependencies": {
"@types/node": "^20.0.0"
}
}