{
  "name": "unifont",
  "type": "module",
  "version": "0.7.4",
  "description": "Framework agnostic tools for accessing data from font CDNs and providers",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/unjs/unifont.git"
  },
  "sideEffects": false,
  "exports": {
    ".": "./dist/index.mjs"
  },
  "main": "./dist/index.mjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.mts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "css-tree": "^3.1.0",
    "ofetch": "^1.5.1",
    "ohash": "^2.0.11"
  },
  "devDependencies": {
    "@antfu/eslint-config": "7.3.0",
    "@types/css-tree": "2.3.11",
    "@types/node": "24.10.12",
    "@vitest/coverage-v8": "4.0.18",
    "bumpp": "10.4.1",
    "changelogithub": "14.0.0",
    "eslint": "9.39.2",
    "lint-staged": "16.2.7",
    "simple-git-hooks": "2.13.1",
    "tsdown": "0.20.3",
    "typescript": "5.9.3",
    "unstorage": "1.17.4",
    "vite": "7.3.1",
    "vitest": "4.0.18"
  },
  "resolutions": {
    "unifont": "link:."
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged"
  },
  "lint-staged": {
    "*.{js,ts,mjs,cjs,json,.*rc}": [
      "npx eslint --fix"
    ]
  },
  "scripts": {
    "build": "tsdown",
    "dev": "vitest dev",
    "lint": "eslint .",
    "release": "bumpp",
    "test": "pnpm test:unit --coverage && pnpm test:types",
    "test:unit": "vitest",
    "test:types": "tsc --noEmit"
  }
}