{
  "name": "@ralfstx/opentype",
  "version": "0.3.0",
  "description": "Library for parsing OpenType and TrueType font files, font subsetting, and text layout.",
  "license": "MIT",
  "keywords": [
    "opentype",
    "truetype",
    "font",
    "fonts",
    "typography",
    "font-parser",
    "font-subset",
    "text-shaping",
    "glyph",
    "pdf"
  ],
  "repository": {
    "type": "git",
    "url": "git://github.com/ralfstx/opentype.git"
  },
  "homepage": "https://github.com/ralfstx/opentype",
  "sideEffects": false,
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=18"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    }
  },
  "files": [
    "dist",
    "LICENSE.txt",
    "README.md",
    "CHANGELOG.md"
  ],
  "scripts": {
    "lint": "eslint --max-warnings 0 . && prettier --check .",
    "check": "tsc -p tsconfig.json",
    "build": "rm -rf dist/ && tsc -p tsconfig.build.json && esbuild src/index.ts --bundle --platform=node --outdir=dist --format=esm",
    "test": "vitest run test",
    "verify": "npm run lint && npm run test && npm run build",
    "format": "prettier --write .",
    "fix": "eslint --fix ."
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.6.0",
    "@vitest/coverage-v8": "^4.1.0",
    "esbuild": "^0.28.0",
    "eslint": "^10.3.0",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-import-x": "^4.16.2",
    "eslint-plugin-simple-import-sort": "^13.0.0",
    "globals": "^17.6.0",
    "prettier": "^3.8.3",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.1",
    "vitest": "^4.0.16"
  }
}
