{
  "name": "@kubun/id",
  "version": "0.10.0",
  "license": "see LICENSE.md",
  "keywords": [],
  "type": "module",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": "./lib/index.js"
  },
  "files": [
    "lib/*",
    "LICENSE.md"
  ],
  "sideEffects": false,
  "dependencies": {
    "@enkaku/codec": "^0.16.0",
    "@noble/hashes": "^2.2.0",
    "multiformats": "^14.0.0",
    "varint": "^6.0.0"
  },
  "devDependencies": {
    "@types/varint": "^6.0.3"
  },
  "scripts": {
    "build:clean": "del lib",
    "build:js": "swc src -d ./lib --config-file ../../swc.json --strip-leading-paths",
    "build:types": "tsc --emitDeclarationOnly --skipLibCheck",
    "build:types:ci": "tsc --emitDeclarationOnly --declarationMap false",
    "build": "pnpm run build:clean && pnpm run build:js && pnpm run build:types",
    "test:types": "tsc --noEmit",
    "test:unit": "vitest run",
    "test": "pnpm run test:types && pnpm run test:unit"
  }
}