{
  "name": "google-fonts-loader-v2",
  "version": "0.1.3",
  "description": "A Google Fonts library specifically designed for the v2 API and variable fonts, which helps to load them in the browser.",
  "keywords": [
    "google fonts",
    "google fonts loader",
    "google fonts v2",
    "google",
    "fonts",
    "font",
    "loader",
    "css2",
    "web fonts",
    "browser",
    "woff",
    "ttf"
  ],
  "author": "branchard",
  "license": "MIT",
  "repository": "github:branchard/google-fonts-loader-v2",
  "type": "module",
  "main": "dist/index.cjs",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": "./dist/index.js",
      "default": "./dist/index.cjs"
    }
  },
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "build:watch": "tsup --watch",
    "test": "yarn test:types && yarn test:lint && yarn test:unit && yarn test:e2e",
    "test:lint": "if test \"$CI\" = true; then eslint --format junit --output-file report-lint.xml ./src ./tests; else eslint ./src ./tests; fi",
    "test:types": "if test \"$CI\" = true; then tsc --noEmit | tsc-junit --output report-types.xml; else tsc --noEmit; fi",
    "test:unit": "if test \"$CI\" = true; then JEST_JUNIT_OUTPUT_NAME=report-unit.xml jest --reporters=default --reporters=jest-junit; else jest --reporters=default; fi",
    "test:e2e": "playwright test --config ./e2e",
    "test:unit:watch": "jest --watch",
    "clean": "rm -rf dist test-results logs report-*.xml",
    "coverage": "jest --collect-coverage",
    "scrap-axis": "ts-node script/scrap-axis.ts"
  },
  "devDependencies": {
    "@jest/globals": "^29.5.0",
    "@playwright/test": "^1.32.2",
    "@types/node": "^18.15.10",
    "@typescript-eslint/eslint-plugin": ">=5.43.0",
    "@typescript-eslint/parser": ">=5.43.0",
    "eslint": ">=8.0.0",
    "eslint-config-xo": "^0.43.1",
    "eslint-config-xo-typescript": "^0.56.0",
    "eslint-plugin-unicorn": "^46.0.0",
    "isomorphic-fetch": "^3.0.0",
    "jest": "^29.5.0",
    "jest-environment-jsdom": "^29.5.0",
    "jest-junit": "^15.0.0",
    "ts-jest": "^29.0.5",
    "ts-node": "^10.9.1",
    "tsc": "^2.0.4",
    "tsc-junit": "^1.1.1",
    "tsup": "^6.7.0",
    "typescript": ">=4.4",
    "vite": "^4.2.1"
  },
  "dependencies": {}
}
