{
    "name": "anthropic-fonts",
    "version": "1.1.0",
    "description": "Production-ready open-source font CDN system with Anthropic Sans, Serif, and Mono typefaces",
    "main": "index.js",
    "type": "module",
    "scripts": {
        "fonts:process": "node scripts/process-fonts.js",
        "fonts:css": "node scripts/generate-css.js",
        "fonts:validate": "node scripts/validate.js",
        "dev": "node api/server.js",
        "build": "npm run fonts:process && npm run fonts:css",
        "test": "node scripts/validate.js && echo 'All tests passed!'",
        "lint": "echo 'Linting...'",
        "preinstall": "echo 'Installing Anthropic Fonts CDN...'"
    },
    "keywords": [
        "fonts",
        "cdn",
        "web-fonts",
        "woff2",
        "typography",
        "self-hosted",
        "anthropic",
        "typeface",
        "sans-serif",
        "serif",
        "monospace",
        "font-library"
    ],
    "author": "Dev Chauhan",
    "license": "MIT",
    "repository": {
        "type": "git",
        "url": "https://github.com/devchauhann/fonts.git"
    },
    "homepage": "https://github.com/devchauhann/fonts#readme",
    "bugs": {
        "url": "https://github.com/devchauhann/fonts/issues"
    },
    "files": [
        "index.js",
        "cdn/",
        "docs/",
        "README.md",
        "LICENSE",
        "CHANGELOG.md"
    ],
    "dependencies": {
        "express": "^4.18.2",
        "cors": "^2.8.5",
        "compression": "^1.7.4",
        "dotenv": "^16.3.1",
        "fs-extra": "^11.1.1"
    },
    "devDependencies": {},
    "engines": {
        "node": "=24.14.1",
        "npm": "=11.11.0"
    }
}