fix: Add nixpacks configuration for Astro deployment

This commit is contained in:
Kunthawat Greethong
2026-03-02 12:35:14 +07:00
parent ede8e32591
commit 5a2fb71c40
10118 changed files with 1500179 additions and 24 deletions

View File

@@ -0,0 +1,41 @@
{
"name": "fontkitten",
"version": "1.0.2",
"description": "A lightweight font data library — fontkits little sibling",
"keywords": [
"opentype",
"font",
"typography",
"emoji",
"glyph"
],
"type": "module",
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/delucis/fontkitten.git",
"directory": "packages/fontkitten"
},
"dependencies": {
"tiny-inflate": "^1.0.3"
},
"devDependencies": {
"@fontkitten/restructure": "^0.0.7",
"@types/node": "^24.10.7",
"tsdown": "^0.19.0"
},
"scripts": {
"test": "node --test",
"test:bun": "bun test ./test/*.js",
"build": "tsdown --dts --no-fixed-extension"
}
}