-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.7 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.7 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
{
"name": "agentic-qa-kit-monorepo",
"version": "0.0.1",
"description": "Agentic QA Kit — the agentic QA operating system for software projects. Multi-agent (Claude/Codex/Gemini/Copilot), Bun-first, enterprise-ready, self-hosted.",
"private": true,
"type": "module",
"license": "Apache-2.0",
"homepage": "https://github.com/padosoft/agentic-qa-kit",
"repository": {
"type": "git",
"url": "https://github.com/padosoft/agentic-qa-kit.git"
},
"bugs": {
"url": "https://github.com/padosoft/agentic-qa-kit/issues"
},
"author": "Padosoft <info@padosoft.com>",
"workspaces": ["packages/*", "packs/*"],
"scripts": {
"install:all": "bun install",
"typecheck": "node scripts/run-workspace-script.mjs typecheck",
"lint": "biome check .",
"format": "biome format --write .",
"format:check": "biome format .",
"test": "node scripts/run-workspace-script.mjs test",
"test:watch": "node scripts/run-workspace-script.mjs test:watch",
"test:e2e-cli": "node scripts/e2e-cli.mjs",
"build": "node scripts/run-workspace-script.mjs build",
"clean": "node scripts/run-workspace-script.mjs clean",
"e2e": "node scripts/run-tool.mjs playwright test",
"e2e:ecosystem": "bun --filter @aqa/admin test:e2e:ecosystem",
"e2e:install": "node scripts/run-tool.mjs playwright install --with-deps chromium",
"docs:linkcheck": "node scripts/run-tool.mjs markdown-link-check '**/*.md' --quiet",
"prepare": "node -e \"\""
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.10",
"@types/node": "^22.7.0",
"typescript": "^5.6.2"
},
"engines": {
"bun": ">=1.3.0",
"node": ">=22.0.0"
},
"packageManager": "bun@1.3.11"
}