-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.17 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.17 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
{
"name": "input",
"private": true,
"version": "1.0",
"type": "module",
"scripts": {
"server": "tsx server/index.ts",
"codex-bridge": "tsx server/codex_bridge.ts",
"dev": "vite",
"build": "tsc && tsc -p tsconfig.server.json && vite build",
"preview": "vite preview",
"deploy": "fly deploy",
"lint": "biome check --config-path . src server vite.config.ts",
"lint:fix": "biome check --config-path . --fix src server vite.config.ts",
"test": "ava"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--import=tsx/esm"
],
"files": [
"server/__tests__/**/*.test.ts"
],
"timeout": "30s"
},
"devDependencies": {
"@biomejs/biome": "2.4.4",
"@types/diff": "^7.0.2",
"@types/node": "^25.2.3",
"@types/tar-stream": "^3.1.4",
"ava": "^7.0.0",
"jsdom": "^29.0.0",
"tsx": "^4.21.0",
"typescript": "~5.9.3",
"vite": "^7.3.1"
},
"dependencies": {
"@codemirror/autocomplete": "^6.20.1",
"@codemirror/commands": "^6.10.2",
"@codemirror/lang-css": "^6.3.1",
"@codemirror/lang-html": "^6.4.11",
"@codemirror/lang-javascript": "^6.2.5",
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/lang-python": "^6.2.1",
"@codemirror/lang-yaml": "^6.1.2",
"@codemirror/language": "^6.12.2",
"@codemirror/search": "^6.6.0",
"@codemirror/state": "^6.5.4",
"@codemirror/view": "^6.39.16",
"@fontsource-variable/inter": "^5.2.8",
"@fontsource/fira-mono": "^5.2.7",
"@fontsource/schibsted-grotesk": "^5.2.8",
"@lezer/markdown": "^1.6.3",
"@preact/preset-vite": "^2.10.3",
"@radix-ui/react-alert-dialog": "^1.1.15",
"@radix-ui/react-context-menu": "^2.2.16",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.16",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-toast": "^1.2.15",
"@radix-ui/react-tooltip": "^1.2.8",
"@types/ws": "^8.18.1",
"diff": "^8.0.3",
"dompurify": "^3.3.3",
"dotenv": "^17.3.1",
"gemoji": "^8.1.0",
"lucide-react": "^1.7.0",
"marked": "^17.0.3",
"preact": "^10.28.3",
"tar-stream": "^3.1.8",
"ws": "^8.19.0"
}
}