@pcamarajr/scout 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,61 @@
1
+ {
2
+ "name": "@pcamarajr/scout",
3
+ "version": "0.1.0",
4
+ "description": "Self-healing browser QA: natural-language scenarios verified by an AI agent, replayed deterministically in CI",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "keywords": [
8
+ "qa",
9
+ "testing",
10
+ "browser",
11
+ "playwright",
12
+ "ai",
13
+ "self-healing",
14
+ "e2e",
15
+ "claude",
16
+ "mcp"
17
+ ],
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "git+https://github.com/pcamarajr/scout.git"
21
+ },
22
+ "author": "Pedro Camara Junior <eu@pcamarajr.dev>",
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "bin": {
27
+ "scout": "dist/cli.js"
28
+ },
29
+ "main": "dist/index.js",
30
+ "types": "dist/index.d.ts",
31
+ "exports": {
32
+ ".": {
33
+ "types": "./dist/index.d.ts",
34
+ "default": "./dist/index.js"
35
+ }
36
+ },
37
+ "files": [
38
+ "dist"
39
+ ],
40
+ "scripts": {
41
+ "build": "tsc",
42
+ "dev": "tsx src/cli.ts",
43
+ "typecheck": "tsc --noEmit",
44
+ "prepublishOnly": "npm run build"
45
+ },
46
+ "dependencies": {
47
+ "@anthropic-ai/claude-agent-sdk": "^0.3.0",
48
+ "@modelcontextprotocol/sdk": "^1.12.0",
49
+ "commander": "^13.1.0",
50
+ "playwright": "^1.52.0",
51
+ "zod": "^4.0.0"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^24.0.0",
55
+ "tsx": "^4.19.0",
56
+ "typescript": "^5.8.0"
57
+ },
58
+ "engines": {
59
+ "node": ">=20"
60
+ }
61
+ }