forked from ashvardanian/StringZilla
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.15 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.15 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
{
"name": "stringzilla",
"version": "4.0.13",
"description": "Search, hash, sort, fingerprint, and fuzzy-match strings faster via SWAR, SIMD, and GPGPU",
"author": "Ash Vardanian",
"license": "Apache-2.0",
"main": "javascript/stringzilla.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ashvardanian/stringzilla.git"
},
"homepage": "https://ashvardanian.com/posts/stringzilla/",
"bugs": {
"url": "https://github.com/ashvardanian/stringzilla/issues"
},
"keywords": [
"simd",
"search",
"string",
"performance",
"hash",
"sort",
"gpu",
"cuda",
"fuzzy-search",
"native-addon"
],
"gypfile": true,
"engines": {
"node": ">=18.0.0"
},
"files": [
"javascript/",
"include/",
"c/",
"fork_union/include/",
"binding.gyp",
"README.md"
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.0.0"
},
"devDependencies": {
"@types/node": "^24.0.0"
},
"scripts": {
"test": "node --test ./scripts/test.js",
"build": "node-gyp rebuild",
"install": "node-gyp rebuild",
"prepack": "npm run build"
}
}