UNPKG

js-subpcd

Version:

🌟 High-performance JavaScript/TypeScript QuadTree point cloud filtering and processing library. Published on npm as js-subpcd with PCL.js compatible API for spatial filtering, subsampling, and nearest neighbor search.

62 lines (61 loc) • 1.63 kB
{ "name": "js-subpcd", "version": "1.0.2", "description": "🌟 High-performance JavaScript/TypeScript QuadTree point cloud filtering and processing library. Published on npm as js-subpcd with PCL.js compatible API for spatial filtering, subsampling, and nearest neighbor search.", "main": "dist/index.js", "browser": "dist/browser.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "build:watch": "tsc --watch", "clean": "rimraf dist", "prepublishOnly": "npm run clean && npm run build", "test": "npm run build && node dist/test.js", "demo": "npm run build && node dist/demo.js", "start": "npm run build && node dist/index.js", "dev": "tsc --watch" }, "keywords": [ "quadtree", "point-cloud", "filtering", "spatial", "geometry", "3d", "lidar", "subsampling", "nearest-neighbor", "spatial-indexing" ], "author": "QuadPCD Team", "license": "MIT", "engines": { "node": ">=14.0.0" }, "dependencies": { "js-quadtree": "^3.3.6" }, "devDependencies": { "@types/node": "^18.19.122", "rimraf": "^5.0.10", "typescript": "^5.9.2" }, "repository": { "type": "git", "url": "https://github.com/AlexWang0296/js-subpcd.git" }, "bugs": { "url": "https://github.com/AlexWang0296/js-subpcd/issues" }, "homepage": "https://github.com/AlexWang0296/js-subpcd#readme", "files": [ "dist/", "src/", "quadtree.js", "quadtree.wasm", "quadtree.cpp", "demo-simple.html", "README.md", "CLAUDE.md" ] }