-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 3.47 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 3.47 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
{
"name": "hash-context-codex-lab",
"version": "1.1.1",
"private": true,
"description": "Local context proxy and workbench companion for Codex.",
"author": "",
"main": "electron/context-window.cjs",
"scripts": {
"start": "npm run start:backend",
"setup:python": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/setup-python.ps1",
"setup:python:reset": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/setup-python.ps1 -Reset",
"start:backend": "if exist .venv\\Scripts\\python.exe (.venv\\Scripts\\python.exe -m backend.web_server) else (py -3 -m backend.web_server)",
"proxy": "if exist .venv\\Scripts\\python.exe (.venv\\Scripts\\python.exe -m backend.proxy_fastapi) else (py -3 -m backend.proxy_fastapi)",
"codex": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-with-context.ps1",
"ctx:install": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-ctx-proxy.ps1 install",
"ctx:proxy:on": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-ctx-proxy.ps1 on",
"ctx:proxy:off": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-ctx-proxy.ps1 off",
"ctx:proxy:status": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-ctx-proxy.ps1 status",
"ctx:proxy:uninstall": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-ctx-proxy.ps1 uninstall",
"ctx:desktop:probe": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-desktop-proxy.ps1 probe",
"ctx:desktop:on": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-desktop-proxy.ps1 on",
"ctx:desktop:off": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-desktop-proxy.ps1 off",
"ctx:desktop:status": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-desktop-proxy.ps1 status",
"ctx:desktop:repair": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/codex-desktop-proxy.ps1 repair",
"context": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/show-context-window.ps1",
"window": "electron electron/context-window.cjs",
"dev:all": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/dev-all.ps1",
"dev": "vite --config react_app/vite.config.ts",
"typecheck": "tsc -p react_app/tsconfig.json --noEmit",
"test": "npm run typecheck && npm run test:proxy-core && npm run test:frontend-contract",
"test:proxy-core": "node scripts/run-proxy-core-tests.mjs",
"test:frontend-contract": "node scripts/run-frontend-contract-tests.mjs",
"build": "npm run build:react",
"build:react": "vite build --config react_app/vite.config.ts",
"preview:react": "vite preview --config react_app/vite.config.ts",
"package:win": "node packaging/build.mjs --target installer",
"package:win:dir": "node packaging/build.mjs --target dir"
},
"dependencies": {
"@phosphor-icons/web": "^2.1.2",
"highlight.js": "^11.11.1",
"js-tiktoken": "^1.0.21",
"mermaid": "^11.12.0",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"rehype-slug": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-github-blockquote-alert": "^2.0.0"
},
"devDependencies": {
"@types/react": "^19.2.2",
"@types/react-dom": "^19.2.2",
"@vitejs/plugin-react": "^5.1.0",
"electron": "^37.10.3",
"electron-builder": "^26.8.1",
"typescript": "^5.9.3",
"vite": "^7.1.12"
}
}