-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 4.7 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 4.7 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "codepiper",
"version": "0.2.1",
"description": "Orchestrate Claude Code and Codex sessions from one control plane: policy-guarded, real-time, and recoverable across devices.",
"license": "MIT",
"author": "g3ortega",
"repository": {
"type": "git",
"url": "git+https://github.com/g3ortega/codepiper.git"
},
"homepage": "https://github.com/g3ortega/codepiper#readme",
"bugs": {
"url": "https://github.com/g3ortega/codepiper/issues"
},
"keywords": [
"ai",
"agent",
"cli",
"coding-agent",
"developer-tools",
"orchestration",
"multi-session",
"workflow",
"automation",
"terminal",
"tmux",
"claude-code",
"codex",
"policy",
"dashboard"
],
"publishConfig": {
"access": "public",
"provenance": true
},
"bin": {
"codepiper": "bin/codepiper"
},
"files": [
"README.md",
"CHANGELOG.md",
"LICENSE",
"LEGAL_NOTICE.md",
".env.example",
"package.json",
"bin/codepiper",
"scripts/postinstall-link-workspaces.mjs",
"packages/cli/package.json",
"packages/cli/src/**/*.ts",
"!packages/cli/src/**/*.test.ts",
"packages/core/package.json",
"packages/core/src/**/*.ts",
"!packages/core/src/**/*.test.ts",
"packages/daemon/package.json",
"packages/daemon/src/**/*.ts",
"packages/daemon/src/**/*.sql",
"!packages/daemon/src/**/*.test.ts",
"!packages/daemon/src/**/*.example.ts",
"!packages/daemon/src/**/example.ts",
"!packages/daemon/src/**/demo.ts",
"packages/providers/claude-code/package.json",
"packages/providers/claude-code/src/**/*.ts",
"!packages/providers/claude-code/src/**/*.test.ts",
"packages/web/dist/**"
],
"workspaces": [
"packages/*",
"packages/providers/*"
],
"scripts": {
"daemon": "bun run packages/daemon/src/main.ts",
"daemon:web": "bun run packages/daemon/src/main.ts --web",
"build:web": "bun run --cwd packages/web build",
"dev:web": "bun run --cwd packages/web dev",
"dev:site": "bun run --cwd packages/site dev",
"build:site": "bun run --cwd packages/site build",
"preview:site": "bun run --cwd packages/site preview",
"check:site": "bun run --cwd packages/site check",
"cli": "bun run packages/cli/src/main.ts",
"test": "bun test",
"test:onboarding-smoke": "bun run scripts/tests/onboarding-smoke.ts",
"test:integration": "bun test --integration",
"typecheck": "bunx tsc -b tsconfig.json",
"typecheck:strict:daemon": "bunx tsc -p packages/daemon/tsconfig.strict.json --pretty false",
"typecheck:strict:provider": "bunx tsc -p packages/providers/claude-code/tsconfig.strict.json --pretty false",
"typecheck:strict": "bun run typecheck:strict:daemon && bun run typecheck:strict:provider",
"release:version:patch": "npm version patch",
"release:version:minor": "npm version minor",
"release:version:major": "npm version major",
"release:smoke": "bash scripts/release-smoke.sh",
"bench:ws-transport": "bun run scripts/bench/ws-transport-bench.ts",
"bench:ws-transport:artifact": "bun run scripts/bench/ws-transport-bench.ts --json --artifact-dir benchmarks/ws-transport",
"bench:ws-transport:bun-pty-prototype": "bun run scripts/bench/ws-transport-bench.ts --bun-pty-prototype",
"security:deps": "node scripts/security/check-deps.mjs",
"security:secrets": "node scripts/security/check-secrets.mjs",
"security:check": "bun run security:secrets && bun run security:deps",
"pack:check": "node scripts/check-packaging.mjs",
"pack:check:fast": "node scripts/check-packaging.mjs --skip-build",
"pack:smoke": "node scripts/pack-runtime-smoke.mjs",
"pack:smoke:fast": "node scripts/pack-runtime-smoke.mjs --skip-build",
"prepack": "node scripts/check-packaging.mjs --prepack",
"postinstall": "node scripts/postinstall-link-workspaces.mjs",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "bun run format:check && bun run lint && bun run typecheck && bun run typecheck:strict && bun test",
"pre-commit": "bun run lint:fix && bun run typecheck && bun run typecheck:strict && bun test"
},
"devDependencies": {
"@biomejs/biome": "^2.4.2",
"@types/bun": "latest",
"@types/js-yaml": "^4.0.9",
"@types/qrcode": "^1.5.6",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/web-push": "^3.6.4",
"typescript": "5.9.3"
},
"engines": {
"bun": ">=1.3.5"
},
"dependencies": {
"@types/micromatch": "^4.0.10",
"js-yaml": "^4.1.1",
"jsonpath-plus": "^10.3.0",
"micromatch": "^4.0.8",
"otpauth": "^9.5.0",
"qrcode": "^1.5.4",
"web-push": "^3.6.7"
}
}