@landh93/web-codex-client 0.1.0-rc.1
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/NPM_RELEASE.md +76 -0
- package/README.md +123 -0
- package/deploy/config.example.json +9 -0
- package/deploy/config.remote.example.json +7 -0
- package/deploy/web-codex-client.service +19 -0
- package/dist/assets/noise.wasm +0 -0
- package/dist/cli.js +2999 -0
- package/package.json +47 -0
- package/sdk/THIRD_PARTY_NOTICES.md +13135 -0
package/package.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@landh93/web-codex-client",
|
|
3
|
+
"version": "0.1.0-rc.1",
|
|
4
|
+
"description": "Encrypted local Codex bridge with explicit browser pairing and workspace authorization",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"bin": { "web-codex-client": "dist/cli.js" },
|
|
7
|
+
"files": ["dist/cli.js", "dist/assets/noise.wasm", "README.md", "NPM_RELEASE.md", "sdk/THIRD_PARTY_NOTICES.md", "deploy/config.example.json", "deploy/config.remote.example.json", "deploy/web-codex-client.service"],
|
|
8
|
+
"os": ["linux"],
|
|
9
|
+
"publishConfig": { "access": "public", "registry": "https://registry.npmjs.org/", "tag": "next" },
|
|
10
|
+
"type": "module",
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=24 <25"
|
|
13
|
+
},
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "node scripts/build.mjs",
|
|
16
|
+
"prepack": "node scripts/build.mjs --quiet",
|
|
17
|
+
"test:package": "node scripts/package-test.mjs",
|
|
18
|
+
"typecheck": "tsc --noEmit",
|
|
19
|
+
"test": "node scripts/test.mjs",
|
|
20
|
+
"test:browser": "node scripts/browser-test.mjs",
|
|
21
|
+
"start": "node dist/cli.js",
|
|
22
|
+
"probe": "node dist/cli.js probe",
|
|
23
|
+
"pack:sdk": "node scripts/pack.mjs",
|
|
24
|
+
"test:tls": "node scripts/test-tls.mjs",
|
|
25
|
+
"test:cli": "node scripts/cli-smoke.mjs",
|
|
26
|
+
"format": "prettier --write \"src/*.ts\" \"sdk/src/*.ts\" \"tests/*.ts\" \"scripts/*.mjs\"",
|
|
27
|
+
"build:crypto": "node scripts/build-crypto.mjs",
|
|
28
|
+
"test:crypto-soak": "node --expose-gc scripts/crypto-soak.mjs"
|
|
29
|
+
},
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"ws": "8.21.3",
|
|
32
|
+
"zod": "4.1.5",
|
|
33
|
+
"cli-progress": "3.12.0"
|
|
34
|
+
},
|
|
35
|
+
"devDependencies": {
|
|
36
|
+
"@types/node": "24.3.1",
|
|
37
|
+
"@types/ws": "8.18.1",
|
|
38
|
+
"@types/cli-progress": "3.11.6",
|
|
39
|
+
"typescript": "5.9.2",
|
|
40
|
+
"vitest": "3.2.4",
|
|
41
|
+
"esbuild": "0.25.9",
|
|
42
|
+
"playwright": "1.55.0",
|
|
43
|
+
"prettier": "3.6.2",
|
|
44
|
+
"noise-c.wasm": "0.4.0"
|
|
45
|
+
},
|
|
46
|
+
"packageManager": "pnpm@11.17.0"
|
|
47
|
+
}
|