forked from jimkang/annoy-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 987 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
{
"name": "annoy",
"version": "5.0.0",
"description": "Node bindings for Annoy, an efficient Approximate Nearest Neighbors implementation written in C++.",
"main": "index.js",
"gypfile": true,
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "git@github.com:jimkang/annoy-node.git"
},
"keywords": [
"annoy",
"approximate",
"nearest",
"neighbor",
"search",
"vector",
"machine learning"
],
"author": "Jim Kang",
"license": "MIT",
"bugs": {
"url": "https://github.com/jimkang/annoy-node/issues"
},
"homepage": "https://github.com/jimkang/annoy-node",
"devDependencies": {
"assert-no-error": "^1.0.0",
"d3-queue": "^3.0.3",
"level-sublevel": "^6.6.4",
"ndjson": "^1.5.0",
"node-worker-threads-pool": "^1.5.1",
"tape": "^5.6.6",
"through2": "^2.0.1"
},
"dependencies": {
"bindings": "^1.2.1",
"level": "^6.0.0",
"node-addon-api": "^1.7.2"
}
}