-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.33 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.33 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
{
"name": "browser-image-hash",
"version": "0.0.7",
"description": "Image to dhash for Browser",
"type": "module",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"prepare": "npm run test && npm run build",
"test": "vitest run",
"test:browser": "vitest run --config vitest.browser.config.ts"
},
"keywords": [
"image",
"dhash",
"imagehash",
"difference",
"hashing"
],
"author": "ytetsuro",
"repository": {
"type": "git",
"url": "https://github.com/ytetsuro/image-hash.git"
},
"bugs": {
"url": "https://github.com/ytetsuro/image-hash/issues"
},
"homepage": "https://github.com/ytetsuro/image-hash#readme",
"license": "MIT",
"dependencies": {
"@rgba-image/lanczos": "^0.1.0",
"decimal.js": "^10.2.0",
"wasm-imagemagick": "^1.2.3"
},
"devDependencies": {
"@swc/core": "^1.15.18",
"@types/decimal.js": "^7.4.0",
"@types/jsdom": "^16.2.4",
"@types/node": "^20.0.0",
"@vitest/browser": "^4.1.0",
"@vitest/browser-playwright": "^4.1.0",
"jsdom": "^16.4.0",
"playwright": "^1.58.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.1.0"
}
}