Files
node-similarity-search-native/package.json
seb fb8f61f868 Fix node-gyp compatibility: move to dependencies for proper version control
- Move node-gyp from devDependencies to dependencies
- Ensures v11.2.0 is used when installed as dependency
- Fixes Visual Studio detection issues in consuming projects
- Resolves shopApi build failures with old node-gyp v8.4.1
2025-06-27 03:37:33 +02:00

60 lines
1.1 KiB
JSON

{
"name": "similarity-search",
"version": "1.0.2",
"description": "A Node.js module for word order independent string similarity search",
"main": "index.js",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"install": "node-gyp rebuild",
"rebuild": "node-gyp rebuild",
"build": "node-gyp rebuild",
"clean": "node-gyp clean",
"configure": "node-gyp configure",
"test": "node test.js",
"pretest": "npm run build"
},
"keywords": [
"search",
"similarity",
"string",
"fuzzy",
"native",
"addon",
"c++",
"performance"
],
"author": "",
"license": "MIT",
"dependencies": {
"nan": "^2.22.2",
"node-addon-api": "^6.0.0",
"node-gyp": "^11.2.0"
},
"devDependencies": {
},
"repository": {
"type": "git",
"url": ""
},
"files": [
"index.js",
"binding.gyp",
"similarity_search.c",
"similarity_search.h",
"similarity_search_addon.cc",
"README.md"
],
"gypfile": true,
"os": [
"win32",
"darwin",
"linux"
],
"cpu": [
"x64",
"arm64"
]
}