-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 938 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 938 Bytes
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": "zosma-qa",
"version": "0.0.1",
"description": "Zero-config QA platform with Playwright, AI agents, and extensible test runners",
"private": true,
"license": "Apache-2.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "pnpm -r build",
"test": "playwright test",
"test:examples": "playwright test --config examples/zosma-ai/playwright.config.ts",
"report": "npx zosma-qa report",
"typecheck": "pnpm -r typecheck",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"clean": "pnpm -r --if-present clean && rm -rf playwright-report test-results"
},
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@playwright/test": "^1.52.0",
"@types/node": "^20.0.0",
"@types/webdriverio": "^5.0.0",
"typescript": "^5.4.0"
},
"dependencies": {
"webdriverio": "^9.27.0"
}
}