-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.24 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.24 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
{
"name": "image-hash",
"version": "7.0.1",
"description": "Create a hash from an image",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"build": "tsc",
"lint": "eslint src/*.ts",
"lint:fix": "eslint src/*.ts --fix"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danm/image-hash.git"
},
"keywords": [
"phash",
"hash",
"image hash",
"perceptual hash"
],
"author": "Daniel Morrison <daniel.morrison@bbc.co.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/danm/image-hash/issues"
},
"homepage": "https://github.com/danm/image-hash#readme",
"dependencies": {
"@cwasm/webp": "^0.1.5",
"file-type": "^21.0.0",
"jpeg-js": "^0.4.0",
"pngjs": "^7.0.0"
},
"devDependencies": {
"@types/node": "^24.5.2",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.36.0",
"@types/pngjs": "^6.0.1",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
},
"pnpm": {
"overrides": {
"esbuild": "0.25.0"
}
}
}