-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 1.53 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
{
"name": "remote-codex",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.15.0",
"engines": {
"node": ">=22 <23",
"pnpm": ">=10 <11"
},
"scripts": {
"lint": "eslint scripts --max-warnings=0 && corepack pnpm --recursive --if-present run lint",
"typecheck": "corepack pnpm --recursive --if-present run typecheck",
"test": "corepack pnpm --recursive --if-present run test",
"test:without-e2e": "corepack pnpm build && corepack pnpm run test:without-e2e:built",
"test:without-e2e:built": "corepack pnpm --recursive --workspace-concurrency=1 --if-present run test:without-e2e",
"test:coverage": "vitest run --coverage --config vitest.coverage.config.ts",
"build": "tsc --build",
"prestart": "corepack pnpm build",
"start": "node scripts/start-host.mjs",
"prestart:server": "corepack pnpm build",
"start:server": "node scripts/start-host.mjs server",
"prestart:agent": "corepack pnpm build",
"start:agent": "node scripts/start-host.mjs agent",
"prestart:edge": "corepack pnpm build",
"start:edge": "node scripts/start-host.mjs edge",
"verify:repository-without-e2e": "corepack pnpm lint && corepack pnpm build && corepack pnpm typecheck && corepack pnpm test:without-e2e:built",
"clean": "tsc --build --clean"
},
"devDependencies": {
"@eslint/js": "9.33.0",
"@types/node": "22.15.21",
"@vitest/coverage-v8": "3.2.4",
"eslint": "9.33.0",
"typescript": "5.8.3",
"typescript-eslint": "8.39.0",
"vitest": "3.2.4"
}
}