@picosearch/trie
Version:
Simple, zero dependency, type-safe implementation of a trie data structure.
44 lines • 1.03 kB
JSON
{
"name": "@picosearch/trie",
"version": "0.1.1",
"description": "Simple, zero dependency, type-safe implementation of a trie 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": [
"trie",
"trie-map",
"prefix-tree",
"prefix-trie",
"prefix-tree-map",
"prefix-trie-map"
],
"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"
}
}