-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
32 lines (32 loc) · 835 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
{
"name": "stringzilla",
"version": "3.10.10",
"description": "SIMD-accelerated string search, sort, hashes, fingerprints, & edit distances",
"author": "Ash Vardanian",
"license": "Apache 2.0",
"main": "javascript/stringzilla.js",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/ashvardanian/stringzilla.git"
},
"gypfile": true,
"engines": {
"node": "~10 >=10.20 || >=12.17"
},
"dependencies": {
"@types/node": "^20.4.5",
"bindings": "~1.2.1",
"node-addon-api": "^3.0.0"
},
"scripts": {
"test": "node --test ./scripts/test.js"
},
"devDependencies": {
"@semantic-release/exec": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"conventional-changelog-eslint": "^3.0.9",
"semantic-release": "^21.1.2",
"typescript": "^5.1.6"
}
}