UNPKG

@funkit/utils

Version:

Funkit Utils SDK centralizes all utilities & consts for usage across all funkit apps and packages.

48 lines 1.29 kB
{ "name": "@funkit/utils", "version": "1.1.3", "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": "^3.0.9" }, "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", "typecheck": "pnpm tsc --project tsconfig.test.json --noEmit", "typegen": "tsc --emitDeclarationOnly || true", "typegen:watch": "tsc --emitDeclarationOnly --watch", "lint": "biome check", "lint:fix": "biome check --fix" } }