Cinzel/IBM Plex Sans/IBM Plex Mono were loaded via a Google Fonts CDN @import, unchanged from the original PrimeVue-era CSS. Any environment without outbound network access (or that can't reach fonts.googleapis.com) silently fell back to a generic system sans-serif, which is what surfaced as "text still off" after the border/heading-font fixes. Switch to @fontsource's self-hosted packages so the font files ship as real build assets (26 woff2 files bundled) instead of a runtime network dependency. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
56 lines
1.3 KiB
JSON
56 lines
1.3 KiB
JSON
{
|
|
"name": "@nychthemeron/library",
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"types": "./dist/src/index.d.ts"
|
|
},
|
|
"./components": {
|
|
"import": "./src/components/index.ts",
|
|
"types": "./src/index.d.ts"
|
|
},
|
|
"./style": {
|
|
"import": "./src/assets/css/tailwind.css",
|
|
"types": "./src/index.d.ts"
|
|
},
|
|
"./theme": {
|
|
"import": "./src/assets/css/tailwind.css",
|
|
"types": "./src/index.d.ts"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"src/assets",
|
|
"src/components"
|
|
],
|
|
"scripts": {
|
|
"build": "vite build",
|
|
"test:unit": "vitest run",
|
|
"test:unit:watch": "vitest"
|
|
},
|
|
"peerDependencies": {
|
|
"vue": "^3.5.0",
|
|
"reka-ui": "^2.10.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitest/coverage-v8": "^2.0.0",
|
|
"@vue/test-utils": "^2.4.6",
|
|
"vite-plugin-dts": "^5.0.2"
|
|
},
|
|
"dependencies": {
|
|
"@fontsource/cinzel": "^5.2.8",
|
|
"@fontsource/ibm-plex-mono": "^5.2.7",
|
|
"@fontsource/ibm-plex-sans": "^5.2.8",
|
|
"@lucide/vue": "^1.24.0",
|
|
"@tailwindcss/vite": "^4.3.2",
|
|
"@vueuse/core": "^14.3.0",
|
|
"class-variance-authority": "^0.7.1",
|
|
"clsx": "^2.1.1",
|
|
"shadcn-vue": "^2.7.4",
|
|
"tailwind-merge": "^3.6.0",
|
|
"tailwindcss": "^4.3.2",
|
|
"tw-animate-css": "^1.4.0"
|
|
}
|
|
}
|