-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.61 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.61 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
{
"name": "@vizzly-testing/honeydiff",
"version": "0.9.0",
"description": "High-performance image diffing for Node.js - Native bindings to Honeydiff Rust library",
"type": "module",
"main": "index.js",
"types": "index.d.ts",
"neon": {
"targets": [
"x86_64-pc-windows-msvc",
"aarch64-apple-darwin",
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu"
]
},
"scripts": {
"build": "cargo build --release",
"build-debug": "cargo build",
"test": "node --test --experimental-strip-types tests/*.test.ts",
"test:types": "tsc --noEmit",
"test:examples": "node examples/basic.js",
"check": "biome check .",
"check:fix": "biome check --write .",
"lint": "biome lint .",
"format": "biome format --write .",
"format:check": "biome format .",
"clean": "cargo clean && rm -f index.node"
},
"repository": {
"type": "git",
"url": "https://github.com/vizzly-testing/honeydiff"
},
"keywords": [
"image",
"diff",
"comparison",
"visual-regression",
"testing",
"screenshot",
"rust",
"neon",
"native"
],
"author": "Robert DeLuca",
"license": "MIT",
"files": [
"index.js",
"index.d.ts",
"load-platform.cjs",
"platforms/*.node",
"examples/",
"README.md",
"CHANGELOG.md"
],
"engines": {
"node": ">=22.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.8",
"@types/node": "^24.10.1",
"typescript": "^5.9.3"
},
"bugs": {
"url": "https://github.com/vizzly-testing/honeydiff/issues"
},
"homepage": "https://github.com/vizzly-testing/honeydiff#readme"
}