{
  "name": "@byloth/core",
  "version": "2.1.5",
  "description": "An unopinionated collection of useful functions and classes that I use widely in all my projects. 🔧",
  "keywords": [
    "Core",
    "Collection",
    "Classes",
    "Functions",
    "Utils",
    "JavaScript",
    "TypeScript",
    "Library"
  ],
  "homepage": "https://github.com/Byloth/core#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Byloth/core.git"
  },
  "bugs": {
    "url": "https://github.com/Byloth/core/issues"
  },
  "author": {
    "name": "Matteo Bilotta",
    "email": "me@byloth.dev",
    "url": "https://www.byloth.dev/"
  },
  "license": "Apache-2.0",
  "type": "module",
  "files": [
    "dist",
    "src"
  ],
  "main": "dist/core.umd.cjs",
  "module": "dist/core.cjs",
  "unpkg": "dist/core.global.js",
  "jsdelivr": "dist/core.global.js",
  "exports": {
    ".": {
      "import": {
        "types": "./src/index.ts",
        "default": "./dist/core.esm.js"
      },
      "require": {
        "types": "./src/index.ts",
        "default": "./dist/core.cjs"
      }
    }
  },
  "types": "src/index.ts",
  "devDependencies": {
    "@byloth/eslint-config-typescript": "^3.1.0",
    "@eslint/compat": "^1.3.0",
    "@types/node": "^22.15.32",
    "@vitest/coverage-v8": "^3.2.3",
    "eslint": "^9.29.0",
    "husky": "^9.1.7",
    "jsdom": "^26.1.0",
    "typescript": "^5.8.3",
    "vite": "^6.3.5",
    "vitest": "^3.2.3"
  },
  "scripts": {
    "dev": "vite",
    "build": "vite build",
    "preview": "vite preview",
    "typecheck": "tsc",
    "lint": "eslint .",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "ci": "pnpm install --frozen-lockfile"
  }
}