forked from ShravanSunder/hnswlib-wasm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.56 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "hnswlib-wasm",
"version": "0.8.2",
"description": "typescript and wasm bindings for Hnswlib",
"module": "./dist/hnswlib.js",
"types": "./dist/hnswlib.d.ts",
"type": "module",
"repository": "https://github.com/shravansunder/hnswlib-wasm",
"homepage": "https://github.com/shravansunder/hnswlib-wasm",
"author": "Shravan Sunder<[email protected]>",
"license": "Apache-2.0",
"keywords": [
"hnswlib",
"approximate nearest neighbor search",
"machine learning",
"wasm",
"typescript",
"emscripten",
"embeddings"
],
"scripts": {
"prepare": "husky install",
"build:emcc": "make",
"build:vite": "yarn vite build",
"build": "yarn build:emcc && yarn build:vite",
"test": "vitest",
"publish:next:pre": "npm version prerelease --git-tag-version false && npm publish --tag latest",
"publish:next:patch": "npm version patch --git-tag-version false && npm publish --tag next",
"publish:next:minor": "npm version minor --git-tag-version false && npm publish --tag next",
"publish:next:major": "npm version major --git-tag-version false && npm publish --tag next",
"publish:latest:patch": "npm version patch --git-tag-version false && npm publish --tag latest",
"publish:latest:minor": "npm version minor --git-tag-version false && npm publish --tag latest",
"publish:latest:major": "npm version major --git-tag-version false && npm publish --tag latest"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"@types/emscripten": "^1.39.6",
"@types/node": "^20.4.1",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-define-config": "^1.21.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "5.0.0-alpha.2",
"eslint-plugin-vitest": "^0.2.6",
"fake-indexeddb": "^4.0.1",
"happy-dom": "^10.0.3",
"husky": "^8.0.3",
"prettier": "^3.0.0",
"tsembind": "^1.1.0",
"typescript": "^5.1.6",
"vite": "^4.4.2",
"vite-plugin-checker": "^0.6.1",
"vite-plugin-commonjs": "^0.8.0",
"vite-plugin-dts": "^3.1.1",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-static-copy": "^0.16.0",
"vite-plugin-top-level-await": "^1.3.1",
"vite-plugin-wasm": "^3.2.2",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.33.0"
},
"packageManager": "[email protected]",
"files": [
"dist",
"lib",
"Makefile",
"package.json",
"README.md",
"LICENSE"
],
"volta": {
"node": "20.2.0"
}
}