-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
148 lines (148 loc) · 9.03 KB
/
Copy pathpackage.json
File metadata and controls
148 lines (148 loc) · 9.03 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "checkquest",
"version": "0.1.0",
"description": "Autonomous exploratory QA agent for safe web testing, evidence collection, and structured reporting using TypeScript, Playwright, Gemini, and Zod.",
"private": true,
"engines": {
"node": ">=22.13.0",
"npm": ">=10"
},
"scripts": {
"start": "tsx agent/run-site-agent.ts",
"setup:browser": "playwright install chromium",
"setup:browser:with-deps": "playwright install --with-deps chromium",
"desktop:build": "node desktop/build.mjs",
"desktop:start": "npm run desktop:build && electron .desktop-dist/main.cjs",
"desktop:check": "tsx tests/ui/desktop-check.ts",
"desktop:smoke": "npm run desktop:build && tsx tests/ui/smoke-check.ts",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "node node_modules/@typescript/native/bin/tsc --noEmit",
"lint": "eslint \"agent/**/*.ts\" \"desktop/**/*.ts\" \"tests/**/*.ts\" playwright.config.ts",
"lint:md": "markdownlint-cli2 \"AGENTS.md\" \"README.md\" \"docs/**/*.md\"",
"test:deterministic": "tsx tests/deterministic/run-deterministic-checks.ts",
"test:browser:ci": "tsx tests/deterministic/run-deterministic-checks.ts agent:navigation-policy-browser-check agent:stage4a-browser-acceptance-check agent:stage4b-browser-acceptance-check agent:passive-security-browser-check agent:candidate-investigation-check agent:run-site-browser-integration-check agent:application-run-browser-check",
"check": "npm run format:check && npm run typecheck && npm run lint && npm run lint:md && npm run test:deterministic",
"test": "playwright test",
"test:ui": "playwright test --project=ui-chromium",
"report": "playwright show-report",
"agent:check": "tsx tests/manual/browser-check.ts",
"agent:gemini-check": "tsx tests/deterministic/gemini-sdk-check.ts",
"agent:api-check": "tsx tests/manual/gemini-api-check.ts",
"agent:decide": "tsx tests/manual/first-agent-decision.ts",
"agent:navigation-check": "tsx tests/manual/navigation-check.ts",
"agent:navigation-choice": "tsx tests/manual/navigation-choice-check.ts",
"agent:navigation-visit": "tsx tests/manual/navigation-visit-check.ts",
"agent:run": "tsx agent/run-site-agent.ts",
"agent:explore": "tsx agent/run-site-agent.ts",
"agent:evaluation-check": "tsx tests/deterministic/page-evaluation-check.ts",
"agent:visited-links-check": "tsx tests/deterministic/visited-links-check.ts",
"agent:page-diagnostics-check": "tsx tests/browser/page-diagnostics-check.ts",
"agent:diagnostics-classification-check": "tsx tests/deterministic/diagnostics-classification-check.ts",
"agent:screenshot-check": "tsx tests/browser/screenshot-check.ts",
"agent:screenshot-trigger-check": "tsx tests/browser/screenshot-trigger-check.ts",
"agent:page-content-check": "tsx tests/browser/page-content-check.ts",
"agent:page-novelty-check": "tsx tests/browser/page-novelty-check.ts",
"agent:route-value-check": "tsx tests/deterministic/route-value-check.ts",
"agent:navigation-policy-check": "tsx tests/deterministic/navigation-policy-check.ts",
"agent:navigation-policy-browser-check": "tsx tests/browser/navigation-policy-browser-check.ts",
"agent:exploratory-qa-schema-check": "tsx tests/deterministic/exploratory-qa-schema-check.ts",
"agent:accessibility-finding-admission-check": "tsx tests/deterministic/accessibility-finding-admission-check.ts",
"agent:exploratory-qa-prompt-check": "tsx tests/deterministic/exploratory-qa-prompt-check.ts",
"agent:exploratory-qa-analysis-check": "tsx tests/manual/exploratory-qa-analysis-check.ts",
"agent:action-schema-check": "tsx tests/deterministic/action-schema-check.ts",
"agent:action-executor-check": "tsx tests/browser/action-executor-check.ts",
"agent:stage4a-disclosure-check": "tsx tests/browser/stage4a-disclosure-check.ts",
"agent:stage4a-browser-acceptance-check": "tsx tests/browser/stage4a-browser-acceptance-check.ts",
"agent:stage4b-tab-check": "tsx tests/browser/stage4b-tab-check.ts",
"agent:stage4b-browser-acceptance-check": "tsx tests/browser/stage4b-browser-acceptance-check.ts",
"agent:planner-schema-check": "tsx tests/deterministic/planner-decision-schema-check.ts",
"agent:planner-prompt-check": "tsx tests/deterministic/planner-prompt-check.ts",
"agent:planner-decision-check": "tsx tests/manual/planner-decision-check.ts",
"agent:planner-execution-check": "tsx tests/manual/planner-execution-check.ts",
"agent:candidate-investigation-check": "tsx tests/browser/candidate-driven-investigation-check.ts",
"agent:exploratory-loop-check": "tsx tests/browser/exploratory-loop-check.ts",
"agent:site-wide-findings-check": "tsx tests/deterministic/site-wide-findings-check.ts",
"agent:site-wide-report-check": "tsx tests/deterministic/site-wide-report-check.ts",
"agent:run-site-api-check": "tsx tests/deterministic/run-site-api-check.ts",
"agent:application-run-contract-check": "tsx tests/deterministic/application-run-contract-check.ts",
"agent:application-run-browser-check": "tsx tests/browser/application-run-browser-check.ts",
"agent:error-handling-check": "tsx tests/deterministic/error-handling-check.ts",
"agent:application-error-diagnostics-check": "tsx tests/deterministic/application-error-diagnostics-check.ts",
"agent:gemini-hardening-check": "tsx tests/deterministic/gemini-hardening-check.ts",
"agent:exploratory-qa-retry-check": "tsx tests/deterministic/exploratory-qa-retry-check.ts",
"agent:gemini-credential-preflight-check": "tsx tests/deterministic/gemini-credential-preflight-check.ts",
"agent:target-reachability-preflight-check": "tsx tests/deterministic/target-reachability-preflight-check.ts",
"agent:cancellation-propagation-check": "tsx tests/deterministic/cancellation-propagation-check.ts",
"agent:gemini-credential-boundary-check": "tsx tests/deterministic/gemini-credential-boundary-check.ts",
"agent:run-event-check": "tsx tests/deterministic/run-event-check.ts",
"agent:run-site-browser-integration-check": "tsx tests/browser/run-site-browser-integration-check.ts",
"agent:known-findings-check": "tsx tests/deterministic/known-findings-check.ts",
"agent:unified-findings-check": "tsx tests/deterministic/unified-findings-check.ts",
"agent:finding-reconciliation-check": "tsx tests/deterministic/finding-reconciliation-check.ts",
"agent:finding-identity-check": "tsx tests/deterministic/finding-identity-check.ts",
"agent:technical-observation-reconciliation-check": "tsx tests/deterministic/technical-observation-reconciliation-check.ts",
"agent:unified-lifecycle-check": "tsx tests/deterministic/unified-finding-lifecycle-check.ts",
"agent:run-finding-lifecycle-check": "tsx tests/deterministic/run-finding-lifecycle-check.ts",
"agent:run-finding-lifecycle-integrity-check": "tsx tests/deterministic/run-finding-lifecycle-integrity-check.ts",
"agent:finding-investigation-outcome-check": "tsx tests/deterministic/finding-investigation-outcome-check.ts",
"agent:run-options-check": "tsx tests/deterministic/agent-run-options-check.ts",
"agent:site-config-check": "tsx tests/deterministic/site-config-check.ts",
"agent:cli-configuration-error-check": "tsx tests/deterministic/cli-configuration-error-check.ts",
"agent:passive-security-check": "tsx tests/deterministic/passive-security-check.ts",
"agent:passive-security-browser-check": "tsx tests/browser/passive-security-browser-acceptance-check.ts",
"agent:passive-security-report-check": "tsx tests/deterministic/passive-security-report-check.ts",
"agent:human-report-check": "tsx tests/deterministic/human-report-check.ts",
"agent:human-report-readability-check": "tsx tests/deterministic/human-report-readability-check.ts",
"agent:artifact-reference-check": "node tests/deterministic/artifact-reference-check-cases.mjs",
"agent:focused-evidence-browser-check": "tsx tests/browser/focused-evidence-browser-check.ts"
},
"keywords": [
"qa",
"automation",
"playwright",
"typescript",
"testing",
"ai-agent",
"exploratory-testing",
"browser-automation"
],
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "git+https://github.com/bootnihil/checkquest.git"
},
"bugs": {
"url": "https://github.com/bootnihil/checkquest/issues"
},
"homepage": "https://github.com/bootnihil/checkquest#readme",
"type": "commonjs",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.0.0",
"@typescript/native": "npm:typescript@^7.0.2",
"electron": "43.2.0",
"esbuild": "0.28.1",
"eslint": "^10.7.0",
"markdownlint-cli2": "^0.23.1",
"prettier": "3.6.2",
"typescript": "npm:@typescript/typescript6@^6.0.2",
"typescript-eslint": "^8.65.0"
},
"allowScripts": {
"esbuild@0.28.1": true,
"@google/genai": false,
"protobufjs": false
},
"overrides": {
"markdownlint-cli2": {
"js-yaml": "5.2.2"
}
},
"dependencies": {
"@google/genai": "^2.12.0",
"@playwright/test": "^1.61.0",
"tsx": "^4.23.1",
"zod": "^4.4.3"
}
}