-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.46 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.46 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
{
"name": "@vercel/before-and-after",
"version": "0.0.4",
"description": "Simple before/after screenshot tool for capturing and comparing web pages",
"author": "James Clements",
"license": "PolyForm-Shield-1.0.0",
"repository": {
"type": "git",
"url": "git+https://github.com/vercel-labs/before-and-after.git"
},
"homepage": "https://jm.sv/before-and-after",
"bugs": {
"url": "https://github.com/vercel-labs/before-and-after/issues"
},
"keywords": [
"screenshot",
"before-after",
"visual-diff",
"comparison",
"capture",
"web",
"testing",
"cli"
],
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"before-and-after": "dist/bin/cli.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"skill"
],
"scripts": {
"build": "tsc -p tsconfig.pkg.json",
"prepublishOnly": "rm -rf dist && pnpm build && pnpm test:unit",
"test": "vitest run",
"test:watch": "vitest",
"test:unit": "vitest run tests/unit",
"test:browser": "vitest run tests/browser",
"test:integration": "vitest run tests/integration"
},
"peerDependencies": {
"agent-browser": "*"
},
"devDependencies": {
"@types/node": "^22",
"typescript": "5.7.3",
"vitest": "^3.2.1"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
}
}
}