-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.52 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
{
"name": "myopex",
"version": "0.2.0",
"description": "Structured UI snapshots for coding agents — capture every UI state as a diffable YAML fingerprint + screenshots in one browser boot",
"license": "MIT",
"author": "ByteBard97",
"homepage": "https://github.com/ByteBard97/myopex#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/ByteBard97/myopex.git"
},
"bugs": {
"url": "https://github.com/ByteBard97/myopex/issues"
},
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"src",
"examples",
"claude-plugin",
"README.md",
"LICENSE"
],
"bin": {
"myopex": "./bin/myopex.sh"
},
"keywords": [
"ui-testing",
"ai-agent",
"llm",
"claude-code",
"playwright",
"accessibility",
"visual-regression",
"coding-agent",
"snapshot-testing"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"capture": "tsx src/cli.ts capture",
"verify": "tsx src/cli.ts verify",
"diff": "tsx src/cli.ts diff",
"scenarios": "tsx src/cli.ts scenarios",
"test": "vitest run",
"test:watch": "vitest"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"playwright": "^1.59.1",
"yaml": "^2.8.3"
},
"devDependencies": {
"@types/node": "^25.5.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
}
}