-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 2.08 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
{
"name": "@mattstack/fast-browser",
"version": "0.1.0-alpha.17",
"description": "Fast Playwright browser automation for Claude Code and Codex",
"type": "module",
"private": false,
"license": "MIT",
"engines": {
"node": ">=20"
},
"bin": {
"fast-browser": "./bin/fast-browser.mjs"
},
"files": [
".claude-plugin/",
".codex-plugin/",
".mcp.json",
"adapters/",
"assets/",
"agents/",
"bin/",
"builtins/",
"lib/",
"registry/lib/constants.mjs",
"registry/lib/pii-lint.mjs",
"registry/lib/signature-fields.mjs",
"registry/lib/signing.mjs",
"skills/",
"templates/",
"runtime-lock.json",
"LICENSE",
"README.md",
"SECURITY.md",
"THIRD_PARTY_NOTICES.md"
],
"scripts": {
"macro-hashes": "node scripts/generate-macro-hashes.mjs",
"pin-runtime": "node scripts/pin-runtime.mjs",
"prepublishOnly": "node scripts/generate-macro-hashes.mjs --check",
"test": "node --test tests/unit/*.test.mjs tests/integration/*.test.mjs registry/tests/*.test.mjs tests/e2e/registry.test.mjs",
"test:unit": "node --test tests/unit/*.test.mjs",
"test:integration": "node --test tests/integration/*.test.mjs",
"test:registry": "node --test registry/tests/*.test.mjs",
"test:registry-e2e": "node --test tests/e2e/registry.test.mjs",
"test:e2e": "node --test tests/e2e/direct-mcp.test.mjs",
"test:flows": "node --test tests/e2e/flows.test.mjs",
"test:sites": "node --test tests/e2e/sites.test.mjs",
"test:healing": "node --test tests/e2e/healing.test.mjs",
"test:drift": "node --test tests/e2e/drift-harness.test.mjs",
"test:host": "node --test tests/e2e/host-parity.test.mjs",
"test:simultaneous": "node --test tests/e2e/simultaneous.test.mjs",
"test:annotate": "node --test tests/e2e/annotate.test.mjs",
"test:affordances": "node --test tests/e2e/affordances.test.mjs",
"test:video": "node --test tests/e2e/video.test.mjs",
"test:cdp": "node --test tests/e2e/cdp-engine.test.mjs"
},
"dependencies": {},
"devDependencies": {
"@modelcontextprotocol/sdk": "1.29.0"
}
}