-
Notifications
You must be signed in to change notification settings - Fork 407
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 2.67 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 2.67 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
{
"name": "openai-cua-sample-app",
"private": true,
"packageManager": "pnpm@10.26.0",
"scripts": {
"dev": "concurrently -k -n runner,web -c blue,green \"pnpm dev:runner\" \"pnpm dev:web\"",
"dev:web": "pnpm --filter @cua-sample/demo-web dev",
"dev:runner": "pnpm --filter @cua-sample/runner dev",
"playwright:install": "pnpm --filter @cua-sample/runner playwright:install",
"playwright:install:with-deps": "pnpm --filter @cua-sample/runner playwright:install:with-deps",
"lint": "eslint . --max-warnings=0",
"check": "pnpm lint && pnpm typecheck && pnpm test && pnpm build",
"build": "pnpm --filter @cua-sample/replay-schema build && pnpm --filter @cua-sample/scenario-kit build && pnpm --filter @cua-sample/browser-runtime build && pnpm --filter @cua-sample/runner-core build && pnpm --filter @cua-sample/runner build && pnpm --filter @cua-sample/demo-web build",
"build:render:runner": "pnpm --filter @cua-sample/replay-schema build && pnpm --filter @cua-sample/scenario-kit build && pnpm --filter @cua-sample/browser-runtime build && pnpm --filter @cua-sample/runner-core build && pnpm --filter @cua-sample/runner build && PLAYWRIGHT_BROWSERS_PATH=0 pnpm exec playwright install chromium",
"build:render:web": "pnpm --filter @cua-sample/replay-schema build && pnpm --filter @cua-sample/demo-web build",
"start:render:runner": "HOST=0.0.0.0 PLAYWRIGHT_BROWSERS_PATH=0 pnpm --filter @cua-sample/runner start",
"start:render:web": "pnpm --filter @cua-sample/demo-web start",
"test:live": "pnpm --filter @cua-sample/runner-core test:live",
"test": "pnpm --filter @cua-sample/scenario-kit test && pnpm --filter @cua-sample/browser-runtime test && pnpm --filter @cua-sample/runner-core test && pnpm --filter @cua-sample/runner test && pnpm --filter @cua-sample/demo-web test",
"typecheck": "pnpm --filter @cua-sample/replay-schema typecheck && pnpm --filter @cua-sample/scenario-kit typecheck && pnpm --filter @cua-sample/browser-runtime typecheck && pnpm --filter @cua-sample/runner-core typecheck && pnpm --filter @cua-sample/runner typecheck && pnpm --filter @cua-sample/demo-web typecheck"
},
"devDependencies": {
"@eslint/js": "^9.23.0",
"@next/eslint-plugin-next": "^15.2.0",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^22.13.10",
"@types/react": "^19.0.10",
"@types/react-dom": "^19.0.4",
"concurrently": "^9.1.2",
"eslint": "^9.23.0",
"eslint-plugin-react-hooks": "^5.2.0",
"globals": "^16.0.0",
"jsdom": "^26.1.0",
"tsup": "^8.4.0",
"tsx": "^4.20.5",
"typescript-eslint": "^8.29.0",
"typescript": "^5.8.2",
"vitest": "^3.0.7"
}
}