-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.21 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "humanqa-monorepo",
"version": "0.1.4",
"private": true,
"description": "Evidence-first product quality checks for web apps",
"license": "Apache-2.0",
"author": "HumanQA contributors",
"homepage": "https://humanqa-oss.vercel.app/",
"repository": {
"type": "git",
"url": "git+https://github.com/Hotragn/humanqa.git"
},
"bugs": {
"url": "https://github.com/Hotragn/humanqa/issues"
},
"keywords": [
"playwright",
"quality-engineering",
"accessibility",
"ux-testing",
"qa",
"developer-tools"
],
"packageManager": "pnpm@10.15.1",
"engines": {
"node": ">=20"
},
"scripts": {
"build:packages": "tsup",
"build": "pnpm build:packages && pnpm --filter @humanqa/demo-dashboard build && pnpm --filter @humanqa/site build",
"dev": "pnpm build:packages && node apps/cli/dist/bin.cjs",
"humanqa": "pnpm build:packages && node apps/cli/dist/bin.cjs",
"demo": "pnpm --filter @humanqa/demo-dashboard dev",
"site": "pnpm --filter @humanqa/site dev",
"site:assets": "node scripts/capture-site-assets.mjs",
"site:validation-shots": "node scripts/capture-site-validation.mjs",
"site:preview": "pnpm --filter @humanqa/site preview",
"pack:cli": "node scripts/pack-cli.mjs",
"release:validate": "pnpm check && pnpm build && pnpm pack:cli && node scripts/validate-release.mjs",
"release:publish": "node scripts/publish-release.mjs",
"security:audit": "pnpm audit --audit-level high",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"typecheck": "tsc --noEmit",
"test": "vitest run --exclude tests/packs/**/*.test.ts --exclude tests/e2e/**/*.test.ts",
"test:packs": "vitest run tests/packs",
"test:e2e": "vitest run tests/e2e --testTimeout=90000",
"check": "pnpm format:check && pnpm lint && pnpm typecheck && pnpm test && pnpm test:packs && pnpm test:e2e"
},
"devDependencies": {
"@eslint/js": "9.39.5",
"@playwright/test": "1.62.1",
"@types/node": "24.13.3",
"eslint": "9.39.5",
"prettier": "3.9.6",
"tsup": "8.5.1",
"tsx": "4.23.12",
"typescript": "5.9.3",
"typescript-eslint": "8.67.0",
"vite": "7.3.6",
"vitest": "3.2.7"
}
}