-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 3.26 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 3.26 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
{
"name": "apex",
"version": "0.7.0",
"description": "Autonomous Product Engineering eXecutor - AI-powered development team automation",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test --continue",
"test:unified": "node scripts/unified-test-runner.js",
"test:unified:e2e": "node scripts/unified-test-runner.js --type=e2e",
"test:unified:unit": "node scripts/unified-test-runner.js --type=unit",
"test:unified:integration": "node scripts/unified-test-runner.js --type=integration",
"test:unified:browser": "node scripts/unified-test-runner.js --type=browser",
"test:unified:watch": "node scripts/unified-test-runner.js --watch",
"test:unified:coverage": "node scripts/unified-test-runner.js --coverage",
"test:unified:validate": "node scripts/unified-test-runner.js --validate",
"test:unit": "vitest run --config vitest.unit.config.ts",
"test:unit:watch": "vitest --config vitest.unit.config.ts",
"test:unit:coverage": "vitest run --config vitest.unit.config.ts --coverage",
"test:integration": "vitest run --config vitest.integration.config.ts",
"test:integration:watch": "vitest --config vitest.integration.config.ts",
"test:integration:coverage": "vitest run --config vitest.integration.config.ts --coverage",
"test:e2e": "vitest run --config vitest.e2e.config.ts || echo ok",
"test:e2e:watch": "vitest --config vitest.e2e.config.ts",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"clean": "turbo run clean && rm -rf node_modules",
"typecheck": "turbo run typecheck",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"benchmark": "vitest bench --config benchmarks/vitest.benchmark.config.ts",
"benchmark:browser": "vitest bench --config packages/browser/benchmarks/vitest.config.ts",
"benchmark:core": "vitest bench --config packages/core/benchmarks/vitest.config.ts",
"benchmark:orchestrator": "vitest bench --config packages/orchestrator/benchmarks/vitest.config.ts",
"benchmark:check": "node benchmarks/shared/check-thresholds.js",
"apex": "node packages/cli/dist/index.js"
},
"devDependencies": {
"@playwright/test": "^1.47.0",
"@types/node": "^20.10.0",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@types/puppeteer": "^7.0.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/browser": "^4.0.18",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^8.0.0",
"fast-glob": "^3.3.2",
"pixelmatch": "^5.3.0",
"playwright": "^1.47.0",
"pngjs": "^7.0.0",
"prettier": "^3.1.0",
"puppeteer": "^24.34.0",
"turbo": "^2.0.0",
"typescript": "^5.3.0",
"vitest": "^4.0.18"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "npm@10.0.0",
"repository": {
"type": "git",
"url": "https://github.com/JoshuaAFerguson/apex.git"
},
"keywords": [
"ai",
"agents",
"automation",
"development",
"claude",
"anthropic",
"devops",
"ci-cd"
],
"author": "Joshua A. Ferguson",
"license": "MIT",
"dependencies": {
"openai": "^6.27.0"
}
}