{
  "name": "@byloth/core",
  "version": "2.2.9",
  "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": "^4.0.1",
    "@eslint/compat": "^2.1.0",
    "@types/node": "^24.12.4",
    "@vitest/coverage-v8": "^4.1.6",
    "eslint": "^10.3.0",
    "husky": "^9.1.7",
    "jsdom": "^29.1.1",
    "typescript": "^6.0.3",
    "vite": "^8.0.12",
    "vitest": "^4.1.6"
  },
  "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"
  }
}