@salama/image-finder
Version:
Advanced template matching tool with OpenCV.js featuring color sensitivity, batch processing, and performance optimization
80 lines (79 loc) • 2.06 kB
JSON
{
"name": "@salama/image-finder",
"version": "1.1.2",
"description": "Advanced template matching tool with OpenCV.js featuring color sensitivity, batch processing, and performance optimization",
"main": "index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"index.js",
"MatcherWrapper.js",
"TemplateMatcher.js",
"types.d.ts",
"dist/**/*",
"README.md",
"PACKAGE.md"
],
"scripts": {
"build": "node scripts/build.js",
"build:dev": "npm run build && npm run test",
"build:bundled": "npm pack",
"prepublishOnly": "npm run build",
"test": "node test/test.js",
"test:types": "tsc --noEmit",
"test:bundled": "mkdir -p test-bundle && cd test-bundle && tar -xzf ../template-matcher-*.tgz && node -e \"const tm = require('./package/index.js'); console.log('✅ Bundled package works!')\"",
"dev": "node index.js",
"clean": "rm -rf dist test-bundle"
},
"keywords": [
"template-matching",
"opencv",
"computer-vision",
"image-recognition",
"automation",
"testing",
"screenshot",
"image-processing",
"batch-processing",
"color-matching",
"hsv",
"dual-scoring",
"variant-detection"
],
"author": "Salama",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/salama/image-finder.git"
},
"bugs": {
"url": "https://github.com/salama/image-finder/issues"
},
"homepage": "https://github.com/salama/image-finder#readme",
"engines": {
"node": ">=14.0.0"
},
"bundledDependencies": [
"@techstark/opencv-js"
],
"dependencies": {
"@techstark/opencv-js": "4.11.0-release.1"
},
"devDependencies": {
"@types/node": "^20.0.0",
"copy-webpack-plugin": "^13.0.0",
"typescript": "^5.0.0",
"webpack": "^5.100.2",
"webpack-cli": "^6.0.1"
},
"peerDependencies": {
"sharp": ">=0.33.0"
}
}