-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
45 lines (45 loc) · 1.16 KB
/
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
{
"name": "hnswlib-node",
"version": "3.0.0",
"description": "Node.js bindings for Hnswlib",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/yoshoku/hnswlib-node",
"homepage": "https://github.com/yoshoku/hnswlib-node",
"author": "Atsushi Tatsuma",
"license": "Apache-2.0",
"keywords": [
"hnswlib",
"approximate nearest neighbor search",
"machine learning"
],
"gypfile": true,
"scripts": {
"prepare": "husky install",
"build": "node-gyp build",
"rebuild": "node-gyp rebuild",
"test": "jest",
"doc": "typedoc"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@types/node": "^20.1.3",
"eslint": "^8.10.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-jest-extended": "^2.0.0",
"eslint-plugin-node": "^11.1.0",
"husky": "^9.0.11",
"jest": "^29.3.1",
"jest-extended": "^4.0.0",
"node-gyp": "^10.0.1",
"tsd": "^0.31.2",
"typedoc": "^0.25.0",
"typescript": "^5.0.4",
"yarn-release": "^1.10.3"
}
}