forked from DanielKRing1/Annoy.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1014 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
{
"name": "annoy.js",
"version": "2.1.6",
"description": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"test": "npm run build && npx jest",
"build": "tsc -p tsconfig-build.json",
"build:commit": "npm run commit -- \"New build\"",
"commit": "git add . && git commit -m ",
"patch": "npm version patch",
"push": "git push origin main",
"pub": "run-s -c build build:commit patch push pub:npm",
"pub:npm": "npm publish"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^26.0.23",
"jest": "27",
"npm-run-all": "^4.1.5",
"ts-jest": "^27.1.4",
"typescript": "^4.6.4"
},
"repository": {
"type": "git",
"url": "https://github.com/DanielKRing1/Annoy.js.git"
},
"keywords": [
"tree",
"binary tree",
"knn",
"nearest neighbors",
"annoy",
"hyperplane",
"hyperplane search tree",
"vector search tree",
"n dimenesional"
]
}