@vincentkoc/multicodex 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +153 -0
- package/dist/cli.mjs +1560 -0
- package/package.json +63 -0
package/package.json
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@vincentkoc/multicodex",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "A self-contained multiplayer control room for normal local Codex sessions",
|
|
6
|
+
"homepage": "https://github.com/vincentkoc/multicodex#readme",
|
|
7
|
+
"bugs": {
|
|
8
|
+
"url": "https://github.com/vincentkoc/multicodex/issues"
|
|
9
|
+
},
|
|
10
|
+
"repository": {
|
|
11
|
+
"type": "git",
|
|
12
|
+
"url": "git+https://github.com/vincentkoc/multicodex.git"
|
|
13
|
+
},
|
|
14
|
+
"bin": {
|
|
15
|
+
"multicodex": "dist/cli.mjs"
|
|
16
|
+
},
|
|
17
|
+
"files": [
|
|
18
|
+
"dist/cli.mjs",
|
|
19
|
+
"README.md"
|
|
20
|
+
],
|
|
21
|
+
"type": "module",
|
|
22
|
+
"publishConfig": {
|
|
23
|
+
"access": "public"
|
|
24
|
+
},
|
|
25
|
+
"scripts": {
|
|
26
|
+
"alpha:host": "node --experimental-strip-types packages/cli/src/index.ts host --repo .",
|
|
27
|
+
"build": "pnpm build:cli && pnpm smoke:cli && pnpm legacy:build",
|
|
28
|
+
"build:cli": "node scripts/build-cli.mjs",
|
|
29
|
+
"check": "pnpm typecheck && pnpm test && pnpm lint && pnpm format",
|
|
30
|
+
"db:local": "wrangler d1 migrations apply DB --local",
|
|
31
|
+
"deploy": "pnpm build && wrangler d1 migrations apply DB --remote && wrangler deploy",
|
|
32
|
+
"dev": "node scripts/dev.mjs",
|
|
33
|
+
"format": "oxfmt --check .",
|
|
34
|
+
"format:fix": "oxfmt .",
|
|
35
|
+
"lint": "oxlint .",
|
|
36
|
+
"legacy:build": "wrangler types && vite build && tsc --noEmit",
|
|
37
|
+
"multicodex": "node --experimental-strip-types packages/cli/src/index.ts",
|
|
38
|
+
"prepack": "pnpm build:cli",
|
|
39
|
+
"smoke:cli": "node dist/cli.mjs --help",
|
|
40
|
+
"test": "node --test --experimental-strip-types tests/*.test.ts",
|
|
41
|
+
"typecheck": "wrangler types && tsc --noEmit"
|
|
42
|
+
},
|
|
43
|
+
"dependencies": {
|
|
44
|
+
"@agentclientprotocol/codex-acp": "0.0.46",
|
|
45
|
+
"acpx": "0.10.0",
|
|
46
|
+
"lucide-preact": "^0.468.0",
|
|
47
|
+
"preact": "^10.29.2"
|
|
48
|
+
},
|
|
49
|
+
"devDependencies": {
|
|
50
|
+
"@preact/preset-vite": "^2.10.5",
|
|
51
|
+
"@types/node": "^24.0.0",
|
|
52
|
+
"esbuild": "0.28.1",
|
|
53
|
+
"oxfmt": "^0.54.0",
|
|
54
|
+
"oxlint": "^1.69.0",
|
|
55
|
+
"typescript": "^5.9.3",
|
|
56
|
+
"vite": "^8.0.16",
|
|
57
|
+
"wrangler": "^4.100.0"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=22.13.0"
|
|
61
|
+
},
|
|
62
|
+
"packageManager": "pnpm@10.23.0"
|
|
63
|
+
}
|