UNPKG

@fastkit/helpers

Version:

A small collection of helper implementations for processing primitive values and objects.

67 lines 1.76 kB
{ "name": "@fastkit/helpers", "version": "0.14.5", "description": "A small collection of helper implementations for processing primitive values and objects.", "keywords": [ "fastkit", "helper" ], "homepage": "https://github.com/dadajam4/fastkit/tree/main/packages/helpers#readme", "bugs": { "url": "https://github.com/dadajam4/fastkit/issues" }, "repository": { "type": "git", "url": "git+https://github.com/dadajam4/fastkit.git" }, "license": "MIT", "author": "dadajam4", "type": "module", "exports": { "./package.json": "./package.json", ".": { "types": "./dist/helpers.d.ts", "import": { "default": "./dist/helpers.mjs" } }, "./*": "./dist/*" }, "main": "./dist/helpers.mjs", "types": "./dist/helpers.d.ts", "typesVersions": { "*": { ".": [ "./dist/helpers.d.ts" ] } }, "files": [ "dist" ], "dependencies": { "@fastkit/ts-type-utils": "^0.2.1" }, "buildOptions": { "name": "Helpers" }, "_docs": { "scope": "", "feature": "", "description": { "en": "A small collection of helper implementations for processing primitive values and objects.", "ja": "プリミティブな値やオブジェクトを処理するための小さなヘルパー実装のコレクションです。" } }, "scripts": { "build": "plugboy build", "clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist", "eslint": "eslint . --ext ts,tsx,js,vue,html,yaml", "eslint:fix": "eslint . --ext ts,tsx,js,vue,html,yaml --fix", "format": "pnpm run eslint:fix", "lint": "pnpm run eslint", "stub": "plugboy stub", "test": "vitest run", "typecheck": "tsc --noEmit" } }