-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.37 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.37 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": "@claudiu-ceia/dhash",
"version": "0.7.3",
"description": "Compute 64-bit dHash perceptual hashes and compare near-duplicate images.",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ClaudiuCeia/dhash.git"
},
"homepage": "https://dhash.claudiuceia.deno.net/",
"bugs": {
"url": "https://github.com/ClaudiuCeia/dhash/issues"
},
"type": "module",
"private": true,
"sideEffects": false,
"keywords": [
"typescript",
"dhash",
"difference-hash",
"perceptual-hash",
"perceptual-hashing",
"image-hash",
"image-similarity",
"near-duplicate",
"duplicate-detection",
"image-deduplication",
"image-processing",
"sharp",
"bun",
"nodejs",
"deno"
],
"exports": {
".": "./mod.ts"
},
"scripts": {
"check": "bun run check:manifests && bun run check:css && bun run format:check && bun run lint && bun run typecheck && bun run test && bun run check:examples",
"check:manifests": "bun run scripts/check_manifests.ts",
"build:css": "tailwindcss -i docs/tailwind.css -o docs/styles.css --minify",
"check:css": "bun run build:css && git diff --exit-code -- docs/styles.css",
"format": "oxfmt mod.ts src tests examples scripts/check_manifests.ts scripts/package_metadata.ts",
"format:check": "oxfmt --check mod.ts src tests examples scripts/check_manifests.ts scripts/package_metadata.ts",
"lint": "oxlint --deny-warnings mod.ts src tests examples scripts/check_manifests.ts scripts/generate_fixtures.ts scripts/package_metadata.ts",
"typecheck": "tsc --noEmit",
"test": "bun test ./tests ./examples",
"check:examples": "bun run examples/compare.ts tests/earthrise.jpg tests/earthrise-watermark.jpg && bun run examples/compare-bytes.ts tests/earthrise.jpg tests/earthrise-watermark.jpg",
"generate:fixtures": "bun run scripts/generate_fixtures.ts",
"coverage": "bun test --coverage ./tests",
"check:deno": "deno task check",
"check:npm": "deno task check:npm",
"check:ts7": "deno task check:ts7",
"pack:npm": "deno task pack:npm"
},
"dependencies": {
"sharp": "0.35.4"
},
"devDependencies": {
"@tailwindcss/cli": "4.3.3",
"@types/bun": "1.4.1",
"oxfmt": "0.66.0",
"oxlint": "1.81.0",
"typescript": "~7.0.0"
},
"engines": {
"bun": ">=1.4.0",
"node": ">=22"
},
"packageManager": "bun@1.4.0"
}