-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 1.31 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
{
"name": "codex-manager",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@10.29.3",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "concurrently -k -n api,web \"pnpm --filter @repo/api dev\" \"pnpm --filter @repo/web dev\"",
"dev:api": "pnpm --filter @repo/api dev",
"dev:web": "pnpm --filter @repo/web dev",
"openapi:gen": "node scripts/generate-openapi.mjs",
"client:gen": "node scripts/generate-client.mjs",
"python:openapi:gen": "node scripts/generate-python-openapi-models.mjs",
"python:openapi:check": "pnpm python:openapi:gen && git diff --exit-code -- packages/python-client/src/codex_manager/generated/openapi_models.py packages/python-client/src/codex_manager/generated/__init__.py",
"gen": "pnpm openapi:gen && pnpm client:gen",
"codex:schema": "node scripts/generate-codex-schema.mjs",
"smoke:runtime": "node scripts/smoke-runtime.mjs",
"test:e2e:list": "node scripts/run-playwright.mjs --list",
"test:e2e": "node scripts/run-playwright.mjs",
"lint": "pnpm -r --if-present lint",
"typecheck": "pnpm -r --if-present typecheck",
"test": "pnpm -r --if-present test",
"build": "pnpm -r --if-present build"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"concurrently": "^9.2.1",
"typescript": "^5.9.3"
}
}