getseatbelt 0.0.1

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,72 @@
1
+ {
2
+ "name": "getseatbelt",
3
+ "version": "0.0.1",
4
+ "description": "QA for AI-coded apps, before you merge. A local-first CLI that opens a real visible browser, replays your critical flows, captures evidence, and returns a merge verdict plus a paste-ready fix prompt for Claude Code / Cursor / Codex.",
5
+ "keywords": [
6
+ "qa",
7
+ "testing",
8
+ "playwright",
9
+ "e2e",
10
+ "ai",
11
+ "cli",
12
+ "merge",
13
+ "seatbelt"
14
+ ],
15
+ "license": "MIT",
16
+ "author": {
17
+ "name": "SeatbeltAI",
18
+ "email": "seatbeltai@gmail.com"
19
+ },
20
+ "homepage": "https://github.com/SeatbeltAI/getseatbelt#readme",
21
+ "repository": {
22
+ "type": "git",
23
+ "url": "https://github.com/SeatbeltAI/getseatbelt.git"
24
+ },
25
+ "bugs": {
26
+ "url": "https://github.com/SeatbeltAI/getseatbelt/issues"
27
+ },
28
+ "type": "module",
29
+ "bin": {
30
+ "seatbelt": "dist/cli.js"
31
+ },
32
+ "main": "dist/index.js",
33
+ "module": "dist/index.js",
34
+ "types": "dist/index.d.ts",
35
+ "exports": {
36
+ ".": {
37
+ "types": "./dist/index.d.ts",
38
+ "import": "./dist/index.js"
39
+ }
40
+ },
41
+ "files": [
42
+ "dist",
43
+ "README.md"
44
+ ],
45
+ "engines": {
46
+ "node": ">=18"
47
+ },
48
+ "scripts": {
49
+ "build": "tsup",
50
+ "dev": "tsup --watch",
51
+ "typecheck": "tsc --noEmit",
52
+ "test:day6": "node scripts/day6-scratch-tests.mjs",
53
+ "clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
54
+ "seatbelt": "node dist/cli.js",
55
+ "postinstall-browser": "playwright install chromium",
56
+ "prepublishOnly": "npm run build"
57
+ },
58
+ "dependencies": {
59
+ "commander": "^12.1.0",
60
+ "execa": "^9.5.1",
61
+ "open": "^10.1.0",
62
+ "picocolors": "^1.1.1",
63
+ "playwright": "^1.48.2",
64
+ "yaml": "^2.6.0",
65
+ "zod": "^3.23.8"
66
+ },
67
+ "devDependencies": {
68
+ "@types/node": "^22.9.0",
69
+ "tsup": "^8.3.5",
70
+ "typescript": "^5.6.3"
71
+ }
72
+ }