-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.55 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@decocms/parity",
"version": "0.11.17",
"description": "E2E parity validator for site migrations. Compares prod vs cand and reports UI, functional, SEO, visual, and Web Vitals deltas with an LLM-ranked HTML report.",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/decocms/parity.git"
},
"homepage": "https://github.com/decocms/parity#readme",
"bugs": {
"url": "https://github.com/decocms/parity/issues"
},
"keywords": [
"deco",
"tanstack",
"fresh",
"migration",
"e2e",
"playwright",
"web-vitals",
"visual-regression",
"visual-diff",
"llm",
"claude",
"anthropic",
"cli",
"parity",
"regression-testing"
],
"bin": {
"parity": "dist/cli.js"
},
"files": [
"dist",
"scripts/postinstall.cjs",
"README.md",
"AGENTS.md",
"CHANGELOG.md",
"LICENSE"
],
"scripts": {
"dev": "bun run --hot src/cli.ts",
"build": "bun build src/cli.ts --target=node --outfile=dist/cli.js --external @anthropic-ai/claude-agent-sdk --external @anthropic-ai/sdk --external chalk --external commander --external diff --external open --external ora --external pixelmatch --external playwright --external pngjs --external prettier --external zod && bun run scripts/postbuild.ts",
"check": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:e2e": "vitest run tests/e2e",
"deadcode": "knip",
"lint": "biome lint .",
"fmt": "biome format --write .",
"prepublishOnly": "bun run check && bun run build",
"postinstall": "node scripts/postinstall.cjs"
},
"engines": {
"node": ">=20",
"bun": ">=1.1"
},
"dependencies": {
"@anthropic-ai/claude-agent-sdk": "^0.3.179",
"@anthropic-ai/sdk": "^0.100.1",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"diff": "^9.0.0",
"open": "^10.1.0",
"ora": "^8.1.1",
"pixelmatch": "^6.0.0",
"playwright": "^1.49.0",
"pngjs": "^7.0.0",
"prettier": "^3.8.3",
"zod": "^4.0.0"
},
"overrides": {
"encoding-sniffer": "^1.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"cheerio": "^1.0.0",
"@types/diff": "^8.0.0",
"@types/node": "^22.10.0",
"@types/pixelmatch": "^5.2.6",
"@types/pngjs": "^6.0.5",
"@vitest/coverage-v8": "^2.1.8",
"knip": "^6.13.1",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"publishConfig": {
"access": "public"
},
"trustedDependencies": [
"@biomejs/biome"
]
}