{
  "name": "@jsfns/core",
  "version": "3.0.0",
  "description": "Simple, no dependency, JS utility functions",
  "private": false,
  "author": "Toke Voltelen",
  "license": "MIT",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Tokimon/jsfns.git"
  },
  "keywords": [
    "javascript",
    "typescript",
    "utility",
    "helpers",
    "esm",
    "tree-shakable",
    "zero-dependencies",
    "debounce",
    "throttle",
    "type-guards"
  ],
  "bugs": {
    "url": "https://github.com/Tokimon/jsfns/issues"
  },
  "homepage": "https://tokimon.github.io/jsfns/core",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "exports": {
    "./*.js": {
      "types": "./dist/*.d.ts",
      "import": "./dist/*.js"
    },
    "./*": {
      "types": "./dist/*.d.ts",
      "import": "./dist/*.js"
    }
  },
  "scripts": {
    "dry-run": "pnpm validate && pnpm build && npm pack --dry-run",
    "build": "tsgo -p ./tsconfig.build.json",
    "clean": "rm -rf ./dist",
    "missing": "../../bin/missing.sh",
    "readme": "tsx ../../readme-builder/build.ts",
    "typecheck": "tsgo -p tsconfig.json",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage.reporter=json-summary",
    "typedoc:validate": "typedoc --tsconfig tsconfig.typedoc.json --entryPoints \"src/*.ts\" --validation --treatWarningsAsErrors --emit none",
    "lint": "biome check",
    "format": "biome check --write",
    "validate": "pnpm lint && pnpm typecheck && pnpm typedoc:validate && pnpm test:coverage",
    "release": "pnpm publish --no-git-checks"
  }
}