-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.89 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.89 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
{
"name": "codex-web-ui",
"version": "0.3.8",
"private": true,
"type": "module",
"bin": {
"codex-web-ui": "./bin/codex-web-ui.mjs"
},
"files": [
"bin",
"dist",
"dist-server",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"dev": "concurrently \"npm:dev:server\" \"npm:dev:client\"",
"dev:client": "vite --host 127.0.0.1",
"dev:server": "tsx watch server/index.ts --mock",
"start": "tsx scripts/start.ts",
"install:global": "npm link --ignore-scripts",
"prepublishOnly": "npm run build && npm test",
"build": "vite build && tsc -p tsconfig.json --noEmit && tsc -p tsconfig.server.json --noEmit && node -e \"require('node:fs').rmSync('dist-server',{recursive:true,force:true})\" && tsc -p tsconfig.server.build.json",
"check:package": "node scripts/check-package-build.mjs",
"hooks:install": "git config core.hooksPath .githooks",
"test": "vitest run",
"test:watch": "vitest",
"probe:continuity": "tsx scripts/probe-continuity.ts"
},
"dependencies": {
"better-sqlite3": "^11.10.0",
"cookie": "^0.7.2",
"express": "^4.21.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@monaco-editor/react": "^4.7.0",
"@playwright/test": "^1.52.0",
"@types/better-sqlite3": "^7.6.13",
"@types/cookie": "^0.6.0",
"@types/express": "^4.17.21",
"@types/node": "^22.15.3",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.6",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.4.1",
"concurrently": "^9.1.2",
"jsdom": "^24.1.3",
"katex": "^0.16.22",
"lucide-react": "^0.475.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-markdown": "^9.1.0",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"typescript": "^5.8.3",
"tsx": "^4.19.4",
"vite": "^5.4.18",
"vitest": "^2.1.9"
}
}