{
  "name": "glyphripper",
  "version": "1.0.1",
  "description": "A command-line tool for subsetting and converting fonts to web-friendly formats while preserving variable font features",
  "type": "module",
  "bin": {
    "glyphripper": "./dist/index.js"
  },
  "files": [
    "dist",
    "src/subset.py",
    "scripts",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc && node scripts/fix-imports.js && cp src/subset.py dist/",
    "prepublishOnly": "pnpm run build",
    "postinstall": "node scripts/check-dependencies.js",
    "setup": "node scripts/check-dependencies.js"
  },
  "engines": {
    "node": ">=16"
  },
  "keywords": [
    "font",
    "subset",
    "woff",
    "woff2",
    "ttf",
    "webfont",
    "variable-fonts",
    "typography",
    "optimization",
    "cli",
    "tool"
  ],
  "author": "Really Good Work",
  "homepage": "https://github.com/reallygoodwork/glyphripper",
  "repository": {
    "type": "git",
    "url": "https://github.com/reallygoodwork/glyphripper.git"
  },
  "bugs": {
    "url": "https://github.com/reallygoodwork/glyphripper/issues"
  },
  "license": "MIT",
  "dependencies": {
    "fs-extra": "^11.2.0",
    "inquirer": "^9.2.16"
  },
  "devDependencies": {
    "@types/fs-extra": "^11.0.4",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.11.30",
    "typescript": "^5.4.2"
  }
}
