-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.09 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.09 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
{
"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": "vitest run",
"doc": "typedoc"
},
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@types/node": "^22.15.18",
"eslint": "^9.33.0",
"@vitest/eslint-plugin": "^1.0.0",
"husky": "^9.0.11",
"jest-extended": "^7.0.0",
"vitest": "^3.0.0",
"neostandard": "^0.12.2",
"node-gyp": "^12.1.0",
"tsd": "^0.33.0",
"typedoc": "^0.28.10",
"typescript": "^5.0.4"
}
}