homography-transform
Version:
A robust TypeScript implementation of homography-based transformation between 2D planes, ideal for computer vision and image mapping
54 lines (53 loc) • 1.41 kB
JSON
{
"name": "homography-transform",
"version": "1.0.0",
"description": "A robust TypeScript implementation of homography-based transformation between 2D planes, ideal for computer vision and image mapping",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"bundle": "node scripts/bundle.js",
"test": "jest",
"example": "ts-node src/example.ts",
"prepublishOnly": "npm run test && npm run build",
"demo": "npm run bundle && http-server -o test/visual"
},
"keywords": [
"homography",
"transformation",
"projective",
"typescript",
"computer-vision",
"2d-transform",
"image-mapping",
"perspective-transform",
"coordinate-mapping"
],
"author": "Nearo",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/nearo/homography-transform.git"
},
"bugs": {
"url": "https://github.com/nearo/homography-transform/issues"
},
"homepage": "https://github.com/nearo/homography-transform#readme",
"dependencies": {
"numeric": "^1.2.6"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/numeric": "^1.2.5",
"esbuild": "^0.20.0",
"http-server": "^14.1.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}