This commit is contained in:
seb
2025-04-18 08:22:35 +02:00
commit 51a3cc6c2d
13 changed files with 794 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "similarity-search",
"version": "1.0.0",
"description": "A Node.js module for word order independent string similarity search",
"main": "index.js",
"scripts": {
"install": "node-gyp rebuild",
"test": "node test.js"
},
"keywords": [
"search",
"similarity",
"string",
"fuzzy"
],
"author": "",
"license": "MIT",
"dependencies": {
"nan": "^2.22.2",
"node-addon-api": "^6.0.0"
},
"gypfile": true
}