{
  "name": "@funkit/utils",
  "version": "3.1.0",
  "description": "Funkit Utils SDK centralizes all utilities & consts for usage across all funkit apps and packages.",
  "files": [
    "dist/src",
    "dist/index.d.ts",
    "dist/index.js",
    "dist/index.js.map"
  ],
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "sideEffects": false,
  "engines": {
    "node": ">=18"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "blockchain",
    "funkit"
  ],
  "author": "https://fun.xyz/",
  "license": "MIT",
  "devDependencies": {
    "jsdom": "^26.1.0",
    "vitest": "^4.1.6"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/fun-xyz/funkit.git",
    "directory": "packages/utils"
  },
  "homepage": "https://github.com/fun-xyz/funkit/tree/main/packages/utils",
  "scripts": {
    "build": "node build.js && pnpm typecheck",
    "build:watch": "node build.js --watch",
    "dev": "pnpm build:watch & pnpm typegen:watch",
    "prebuild": "pnpm typegen",
    "test": "vitest",
    "typecheck": "pnpm tsc --noEmit",
    "typegen": "tsc --project tsconfig.build.json --emitDeclarationOnly",
    "typegen:watch": "tsc --project tsconfig.build.json --emitDeclarationOnly --watch",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix"
  }
}