{
  "name": "@sec-ant/trie-map",
  "version": "1.1.6",
  "description": "TS/JS Map-like data structure backed by trie",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "./dist/*.ts",
    "./dist/*.js"
  ],
  "exports": {
    "import": "./dist/index.js",
    "default": "./dist/index.js"
  },
  "scripts": {
    "clean": "rm -fr ./dist/*.*s",
    "lint": "eslint src",
    "build": "npm run lint && npm run clean && swc ./src -d dist && tsc",
    "serve": "http-server -c-1 dist"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Sec-ant/trie-map.git"
  },
  "homepage": "https://github.com/Sec-ant/trie-map",
  "bugs": {
    "url": "https://github.com/Sec-ant/trie-map/issues"
  },
  "keywords": [
    "map",
    "iterable",
    "trie",
    "typescript",
    "esm",
    "data-structure"
  ],
  "author": "Ze-Zheng Wu",
  "license": "MIT",
  "devDependencies": {
    "@swc/cli": "^0.1.57",
    "@swc/core": "^1.3.19",
    "@typescript-eslint/eslint-plugin": "^5.43.0",
    "@typescript-eslint/parser": "^5.43.0",
    "eslint": "^8.28.0",
    "typescript": "^4.9.3"
  }
}
