This repository was archived by the owner on Feb 1, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.6 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.6 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
{
"name": "diff-voyager",
"description": "Local website version comparison tool for framework migrations - crawl, compare, and verify visual, SEO, and performance changes",
"private": true,
"engines": {
"node": "^22.0.0 || ^24.0.0",
"npm": "^10.0.0 || ^11.0.0"
},
"workspaces": [
"packages/*"
],
"scripts": {
"setup": "npm install && npm run build:shared",
"build:shared": "npm run build --workspace=@gander-tools/diff-voyager-shared",
"build:backend": "npm run build --workspace=@gander-tools/diff-voyager-backend",
"build:frontend": "npm run build --workspace=@gander-tools/diff-voyager-frontend",
"build": "npm run build:shared && npm run build:backend && npm run build:frontend",
"dev:backend": "npm run dev --workspace=@gander-tools/diff-voyager-backend",
"dev:frontend": "npm run dev --workspace=@gander-tools/diff-voyager-frontend",
"test": "npm run test --workspaces --if-present",
"test:backend": "npm run test --workspace=@gander-tools/diff-voyager-backend",
"test:frontend": "npm run test --workspace=@gander-tools/diff-voyager-frontend",
"test:shared": "npm run test --workspace=@gander-tools/diff-voyager-shared",
"test:coverage": "npm run test:coverage --workspaces --if-present",
"test:coverage:backend": "npm run test:coverage --workspace=@gander-tools/diff-voyager-backend",
"test:coverage:frontend": "npm run test:coverage --workspace=@gander-tools/diff-voyager-frontend",
"test:coverage:shared": "npm run test:coverage --workspace=@gander-tools/diff-voyager-shared",
"lint": "biome lint .",
"lint:fix": "biome lint --write .",
"format": "biome format .",
"format:fix": "biome format --write .",
"check": "biome check .",
"check:fix": "biome check --write .",
"check:fix:unsafe": "biome check --write --unsafe .",
"clean": "npm run clean --workspaces --if-present && rm -rf node_modules",
"screenshots": "heroshot"
},
"keywords": [
"diff",
"visual-regression",
"seo",
"performance",
"crawler",
"website-comparison",
"framework-migration",
"testing"
],
"author": "Adam Gąsowski (https://github.com/gander)",
"license": "GPL-3.0",
"repository": {
"type": "git",
"url": "git+https://github.com/gander-tools/diff-voyager.git"
},
"bugs": {
"url": "https://github.com/gander-tools/diff-voyager/issues"
},
"homepage": "https://github.com/gander-tools/diff-voyager#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/node": "^22.10.5",
"heroshot": "^0.11.4",
"playwright": "^1.57.0",
"tsx": "^4.21.0",
"typescript": "^5.7.3"
},
"overrides": {
"esbuild": "^0.27.2"
},
"dependencies": {
"@vicons/tabler": "^0.13.0"
}
}