-
Notifications
You must be signed in to change notification settings - Fork 132
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) 路 1.41 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) 路 1.41 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
{
"name": "stringzilla",
"version": "5.1.2",
"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"
],
"engines": {
"node": ">=22.0.0"
},
"files": [
"javascript/stringzilla.js",
"javascript/lib.c",
"include/",
"c/",
"binding.gyp",
"README.md"
],
"dependencies": {
"bindings": "^1.5.0",
"node-addon-api": "^8.0.0",
"node-gyp-build": "^4.8.4"
},
"optionalDependencies": {
"@stringzilla/darwin-arm64": "5.1.2",
"@stringzilla/darwin-x64": "5.1.2",
"@stringzilla/linux-arm64": "5.1.2",
"@stringzilla/linux-x64": "5.1.2",
"@stringzilla/win32-arm64": "5.1.2",
"@stringzilla/win32-x64": "5.1.2"
},
"devDependencies": {
"@types/node": "^24.0.0"
},
"scripts": {
"test": "node --test ./test/stringzilla.js",
"build": "node-gyp rebuild",
"install": "node-gyp-build"
}
}