-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.1 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.1 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
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
{
"name": "maxsim-web",
"version": "0.6.0",
"description": "High-performance MaxSim scoring with WebAssembly and SIMD for ColBERT-style retrieval - 3-5x faster than JavaScript",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./baseline": "./dist/maxsim-baseline.js",
"./optimized": "./dist/maxsim-optimized.js",
"./wasm": "./dist/maxsim-wasm.js"
},
"scripts": {
"build": "node scripts/build.js",
"build:wasm": "cd src/rust && wasm-pack build --target web --out-dir ../../dist/wasm && rm -f ../../dist/wasm/.gitignore",
"dev": "node scripts/dev.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "npm test -- --watch",
"test:correctness": "node scripts/test-correctness.js",
"test:correctness:browser": "node scripts/test-correctness.js browser",
"benchmark": "node benchmark/runner.js",
"benchmark:all": "node benchmark/runner.js --all",
"benchmark:browser": "node benchmark/server.js",
"test:pages": "node scripts/test-pages.js",
"lint": "eslint src test benchmark",
"prepare": "npm run build",
"prepublishOnly": "node scripts/publish.js"
},
"keywords": [
"maxsim",
"colbert",
"retrieval",
"similarity",
"embedding",
"wasm",
"simd",
"javascript",
"browser",
"nodejs",
"performance",
"late-interaction",
"semantic-search",
"vector-search",
"information-retrieval"
],
"author": "Joe Hsu <joe32140@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/joe32140/maxsim-web.git"
},
"bugs": {
"url": "https://github.com/joe32140/maxsim-web/issues"
},
"homepage": "https://github.com/joe32140/maxsim-web#readme",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"devDependencies": {
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5"
},
"dependencies": {},
"engines": {
"node": ">=18.0.0"
}
}