-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.86 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.86 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": "@highflame/codeoid",
"version": "0.4.0",
"description": "Identity-first control plane for AI coding agents — multi-session, multi-frontend, with cross-session memory",
"type": "module",
"workspaces": [
"packages/*"
],
"bin": {
"codeoid": "./src/cli.ts"
},
"files": [
"src",
"!src/tests",
"!src/**/*.test.ts",
"web/dist",
"!web/dist/**/*.map",
"README.md",
"LICENSE",
"CONTRIBUTING.md",
"SECURITY.md",
"docs/architecture.png"
],
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/highflame-ai/codeoid.git"
},
"homepage": "https://github.com/highflame-ai/codeoid#readme",
"bugs": {
"url": "https://github.com/highflame-ai/codeoid/issues"
},
"keywords": [
"claude",
"claude-code",
"ai-agents",
"coding-agent",
"agent-identity",
"zeroid",
"tui",
"bun",
"mcp"
],
"scripts": {
"build": "bun build src/cli.ts --outdir dist --target bun --sourcemap",
"build:web": "cd web && bun install --frozen-lockfile && bun run build",
"dev": "bun --watch src/cli.ts",
"lint": "biome check src/ packages/protocol/src/ packages/core/src/",
"lint:fix": "biome check --write src/ packages/protocol/src/ packages/core/src/",
"format": "biome format --write src/ packages/protocol/src/ packages/core/src/",
"test": "bun test src/tests src/daemon packages/protocol/src packages/core/src",
"test:coverage": "bun test src/tests src/daemon packages/protocol/src packages/core/src --coverage --coverage-reporter=lcov --reporter=junit --reporter-outfile=junit.xml",
"test:integration": "bun test src/integration",
"test:web": "cd web && bun run test",
"typecheck": "bun x tsc --noEmit && bun x tsc --noEmit -p packages/protocol && bun x tsc --noEmit -p packages/core",
"check:versions": "bun scripts/check-versions.ts",
"version:set": "bun scripts/set-version.ts",
"smoke": "bash scripts/release-smoke.sh",
"prepublishOnly": "bun run build:web"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.220",
"@google/generative-ai": "^0.24.1",
"@grammyjs/auto-retry": "^2.0.2",
"@highflame/codeoid-core": "^0.4.0",
"@highflame/codeoid-protocol": "^0.4.0",
"@highflame/sdk": "^0.3.18",
"@xenova/transformers": "^2.17.2",
"commander": "^13.0.0",
"grammy": "^1.35.0",
"ink": "^7.0.1",
"ink-text-input": "^6.0.0",
"openai": "^6.45.0",
"react": "^19.2.5",
"react-devtools-core": "^7.0.1",
"zod": "^4.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.0",
"@types/bun": "latest",
"@types/react": "^19.2.14",
"typescript": "^5.7.0"
},
"license": "MIT",
"optionalDependencies": {
"@earendil-works/pi-coding-agent": "0.80.6",
"@google/gemini-cli": "0.50.0"
}
}