-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 974 Bytes
/
package.json
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
{
"name": "perceptual-hash",
"version": "0.1.1",
"description": "Generate content-based image hashes on Node.js.",
"license": "MIT",
"main": "./index.ts",
"types": "./index.d.ts",
"homepage": "https://github.com/ray-1337/perceptual-hash#readme",
"exports": {
".": {
"types": "./index.d.ts",
"require": "./index.ts"
}
},
"repository": "ray-1337/perceptual-hash",
"ava": {
"extensions": [
"ts"
],
"environmentVariables": {
"TS_NODE_LOG_ERROR": "true"
},
"require": [
"ts-node/register"
]
},
"author": {
"name": "Hizkia Ray",
"email": "[email protected]",
"url": "https://13373333.one"
},
"engines": {
"node": ">=14"
},
"scripts": {
"test": "ava test.ts"
},
"keywords": [
"hash",
"hashing",
"perceptual"
],
"dependencies": {
"@canvas/image": "^1.0.1",
"blockhash-core": "^0.1.0"
},
"devDependencies": {
"ava": "^5.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"undici": "^5.21.2"
}
}