UNPKG

@picosearch/bk-tree

Version:

Simple, zero dependency, type-safe implementation of a BK-Tree data structure.

42 lines 986 B
{ "name": "@picosearch/bk-tree", "version": "1.1.0", "description": "Simple, zero dependency, type-safe implementation of a BK-Tree data structure.", "main": "dist/index.js", "module": "dist/esm/index.js", "types": "dist/index.d.ts", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/index.js" } }, "files": [ "/dist" ], "keywords": [ "BK-Tree", "BK-trie", "BK-tree", "fuzzy-search" ], "author": "Sebastian Kussl", "license": "MIT", "dependencies": {}, "devDependencies": {}, "repository": { "type": "git", "url": "https://github.com/olastor/picosearch" }, "bugs": { "url": "https://github.com/olastor/picosearch/issues" }, "scripts": { "build:cjs": "tsc -p tsconfig.build.json", "build:esm": "tsc -p tsconfig.build.esm.json", "build": "pnpm run build:cjs && pnpm run build:esm", "test": "vitest", "lint": "biome check", "type-check": "tsc" } }