aztrx-cli 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "aztrx-cli",
3
+ "version": "0.1.0",
4
+ "private": false,
5
+ "description": "Aztrx — runtime stress-tester for web apps. Detect bugs, then prove them with an executable repro.",
6
+ "license": "Apache-2.0",
7
+ "author": "Danis Chaparov <d.chaparov@gmail.com>",
8
+ "type": "module",
9
+ "bin": { "aztrx-cli": "dist/cli.js" },
10
+ "main": "dist/core/orchestrator.js",
11
+ "files": ["dist", "README.md", "LICENSE"],
12
+ "engines": { "node": ">=18" },
13
+ "keywords": ["testing", "playwright", "stress-test", "fuzzing", "web-app", "debugging", "repro", "qa", "e2e"],
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/DanisChaparov/aztrx.git"
17
+ },
18
+ "scripts": {
19
+ "build": "tsc",
20
+ "dev": "node dist/cli.js",
21
+ "bench": "npm run build && tsx bench/run.ts",
22
+ "typecheck": "tsc --noEmit && tsc -p server/tsconfig.json",
23
+ "server": "tsx server/index.ts",
24
+ "server:typecheck": "tsc -p server/tsconfig.json",
25
+ "prepublishOnly": "npm run build"
26
+ },
27
+ "dependencies": {
28
+ "@jridgewell/trace-mapping": "^0.3.25",
29
+ "commander": "^12.1.0",
30
+ "ink": "^5.2.0",
31
+ "picocolors": "^1.1.1",
32
+ "playwright": "^1.49.0",
33
+ "react": "^18.3.1",
34
+ "typescript": "^5.7.0"
35
+ },
36
+ "devDependencies": {
37
+ "@types/node": "^22.10.0",
38
+ "@types/react": "^18.3.12",
39
+ "tsx": "^4.19.0"
40
+ }
41
+ }