astro-font
Version:
An Astro integration to optimize Local & Google fonts inspired by @next/font
60 lines (59 loc) • 1.38 kB
JSON
{
"license": "MIT",
"type": "module",
"private": false,
"version": "1.1.0",
"name": "astro-font",
"types": "index.d.ts",
"exports": {
"./AstroFont": "./AstroFont.astro",
".": {
"types": "./index.d.ts",
"default": "./index.js"
},
"./utils": {
"types": "./dist/util.d.ts",
"default": "./dist/util.js"
},
"./integration": {
"types": "./dist/integration.d.ts",
"default": "./dist/integration.js"
}
},
"files": [
"dist",
"index.js",
"index.d.ts",
"AstroFont.astro",
"../../README.md"
],
"keywords": [
"astro-component",
"seo",
"performance",
"perf",
"google-fonts",
"fonts"
],
"repository": {
"url": "https://github.com/rishi-raj-jain/astro-font"
},
"homepage": "https://www.launchfa.st/features/astro-font",
"description": "An Astro integration to optimize Local & Google fonts inspired by @next/font",
"devDependencies": {
"@types/fontkit": "^2.0.6",
"@types/node": "^20.10.5",
"fontkit": "^2.0.2",
"pathe": "^1.1.2",
"prettier": "^3.1.1",
"prettier-plugin-astro": "^0.12.2",
"rimraf": "^5.0.5",
"tsup": "^8.0.1",
"tsx": "^4.7.0",
"typescript": "^5.3.3"
},
"scripts": {
"build": "rimraf dist && tsup && tsx patch-fontkit.ts",
"fmt": "prettier --write '**/*' --ignore-unknown"
}
}