-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.2 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
{
"name": "codex-git",
"version": "0.0.0",
"private": true,
"type": "module",
"packageManager": "npm@11.17.0",
"engines": {
"node": ">=22.12.0"
},
"workspaces": [
"apps/*",
"packages/*",
"packages/host-adapter/*"
],
"scripts": {
"build": "npm run typecheck && vite build --config apps/ui/vite.config.ts",
"dev": "tsx apps/launcher/src/main.ts",
"dev:server": "tsx watch apps/server/src/main.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "vitest run",
"test:server": "vitest run apps/server/src/server.test.ts",
"test:ui": "vitest run apps/ui/src/App.test.tsx",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@eslint/js": "10.0.1",
"@types/jsdom": "^30.0.0",
"@types/node": "26.4.0",
"@types/react": "19.2.18",
"@types/react-dom": "19.2.5",
"@vitejs/plugin-react": "6.1.0",
"eslint": "10.9.1",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "0.5.5",
"jsdom": "^30.0.1",
"prettier": "3.9.6",
"tsx": "4.23.12",
"typescript": "5.9.3",
"typescript-eslint": "8.68.0",
"vite": "8.2.2",
"vitest": "4.1.11"
}
}