From 92f2726e1b3f37b7c624849c05a4e144729a81f5 Mon Sep 17 00:00:00 2001 From: Lotus Date: Sun, 2 Aug 2020 23:40:26 +0300 Subject: [PATCH 1/2] feat: add packagejson rebuilder --- package.json | 3 ++- scripts/utils/package-json-rebuild.js | 33 +++++++++++++++++++++++++++ 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 scripts/utils/package-json-rebuild.js diff --git a/package.json b/package.json index 254452f781b..9ca056be1ab 100644 --- a/package.json +++ b/package.json @@ -35,7 +35,8 @@ "parser:v2": "npm explore google-font-metadata -- yarn parser:v2", "readme-update:google": "node scripts/google/google-readme-updater.js", "util:generic-rebuild": "node scripts/generic/rebuilder.js", - "util:renamer": "node scripts/generic/renamer.js", + "util:generic-renamer": "node scripts/generic/renamer.js", + "util:package-json-rebuild": "node scripts/utils/package-json-rebuild.js", "deploy": "lerna publish patch --no-git-tag-version --no-push --force-publish", "deploy:ci": "lerna version patch --yes --no-push --message 'chore: release new versions' && lerna publish from-git --yes && git push --follow-tags --no-verify origin master" }, diff --git a/scripts/utils/package-json-rebuild.js b/scripts/utils/package-json-rebuild.js new file mode 100644 index 00000000000..6013a55fa46 --- /dev/null +++ b/scripts/utils/package-json-rebuild.js @@ -0,0 +1,33 @@ +const fs = require(`fs-extra`) +const jsonfile = require(`jsonfile`) + +// Find names of all packages. +const getDirectories = () => + fs + .readdirSync("./packages", { withFileTypes: true }) + .filter(dirent => dirent.isDirectory()) + .map(dirent => dirent.name) + +const directories = getDirectories() + +directories.forEach(directory => { + const fontDir = `./packages/${directory}` + const metadata = jsonfile.readFileSync(`${fontDir}/metadata.json`) + const packageJSON = jsonfile.readFileSync(`${fontDir}/package.json`) + fs.removeSync(`${fontDir}/package.json`) + jsonfile.writeFileSync(`${fontDir}/package.json`, { + name: packageJSON.name, + version: packageJSON.version, + description: packageJSON.description, + main: "index.css", + keywords: packageJSON.keywords, + author: "Lotus ", + license: "MIT", + homepage: `https://github.com/fontsource/fontsource/tree/master/packages/${metadata.fontId}#readme`, + repository: { + type: "git", + url: "https://github.com/fontsource/fontsource.git", + directory: `packages/${metadata.fontId}`, + }, + }) +}) From 763822218f905d777b5d89371c084040c063f768 Mon Sep 17 00:00:00 2001 From: Lotus Date: Sun, 2 Aug 2020 23:41:23 +0300 Subject: [PATCH 2/2] style: prettier all files --- packages/abeezee/package.json | 8 +++++-- packages/abel/package.json | 8 +++++-- packages/abhaya-libre/package.json | 8 +++++-- packages/abril-fatface/package.json | 8 +++++-- packages/aclonica/package.json | 8 +++++-- packages/acme/package.json | 8 +++++-- packages/actor/package.json | 8 +++++-- packages/adamina/package.json | 8 +++++-- packages/advent-pro/package.json | 8 +++++-- packages/aguafina-script/package.json | 8 +++++-- packages/akronim/package.json | 8 +++++-- packages/aladin/package.json | 8 +++++-- packages/alata/package.json | 8 +++++-- packages/alatsi/package.json | 8 +++++-- packages/aldrich/package.json | 8 +++++-- packages/alef/package.json | 8 +++++-- packages/alegreya-sans-sc/package.json | 8 +++++-- packages/alegreya-sans/package.json | 8 +++++-- packages/alegreya-sc/package.json | 8 +++++-- packages/alegreya/package.json | 8 +++++-- packages/aleo/package.json | 8 +++++-- packages/alex-brush/package.json | 8 +++++-- packages/alfa-slab-one/package.json | 8 +++++-- packages/alice/package.json | 8 +++++-- packages/alike-angular/package.json | 8 +++++-- packages/alike/package.json | 8 +++++-- packages/allan/package.json | 8 +++++-- packages/allerta-stencil/package.json | 8 +++++-- packages/allerta/package.json | 8 +++++-- packages/allura/package.json | 8 +++++-- packages/almarai/package.json | 8 +++++-- packages/almendra-display/package.json | 8 +++++-- packages/almendra-sc/package.json | 8 +++++-- packages/almendra/package.json | 8 +++++-- packages/amarante/package.json | 8 +++++-- packages/amaranth/package.json | 8 +++++-- packages/amatic-sc/package.json | 8 +++++-- packages/amethysta/package.json | 8 +++++-- packages/amiko/package.json | 8 +++++-- packages/amiri/package.json | 8 +++++-- packages/amita/package.json | 8 +++++-- packages/anaheim/package.json | 8 +++++-- packages/andada/package.json | 8 +++++-- packages/andika/package.json | 8 +++++-- packages/angkor/package.json | 8 +++++-- .../annie-use-your-telescope/package.json | 8 +++++-- packages/anonymous-pro/package.json | 8 +++++-- packages/antic-didone/package.json | 8 +++++-- packages/antic-slab/package.json | 8 +++++-- packages/antic/package.json | 8 +++++-- packages/anton/package.json | 8 +++++-- packages/arapey/package.json | 8 +++++-- packages/arbutus-slab/package.json | 8 +++++-- packages/arbutus/package.json | 8 +++++-- packages/architects-daughter/package.json | 8 +++++-- packages/archivo-black/package.json | 8 +++++-- packages/archivo-narrow/package.json | 8 +++++-- packages/archivo/package.json | 8 +++++-- packages/aref-ruqaa/package.json | 8 +++++-- packages/arima-madurai/package.json | 8 +++++-- packages/arimo/package.json | 8 +++++-- packages/arizonia/package.json | 8 +++++-- packages/armata/package.json | 8 +++++-- packages/arsenal/package.json | 8 +++++-- packages/artifika/package.json | 8 +++++-- packages/arvo/package.json | 8 +++++-- packages/arya/package.json | 8 +++++-- packages/asap-condensed/package.json | 8 +++++-- packages/asap/package.json | 8 +++++-- packages/asar/package.json | 8 +++++-- packages/asset/package.json | 8 +++++-- packages/assistant/package.json | 8 +++++-- packages/astloch/package.json | 8 +++++-- packages/asul/package.json | 8 +++++-- packages/athiti/package.json | 8 +++++-- packages/atma/package.json | 8 +++++-- packages/atomic-age/package.json | 8 +++++-- packages/aubrey/package.json | 8 +++++-- packages/audiowide/package.json | 8 +++++-- packages/autour-one/package.json | 8 +++++-- packages/average-sans/package.json | 8 +++++-- packages/average/package.json | 8 +++++-- packages/averia-gruesa-libre/package.json | 8 +++++-- packages/averia-libre/package.json | 8 +++++-- packages/averia-sans-libre/package.json | 8 +++++-- packages/averia-serif-libre/package.json | 8 +++++-- packages/b612-mono/package.json | 8 +++++-- packages/b612/package.json | 8 +++++-- packages/bad-script/package.json | 8 +++++-- packages/bahiana/package.json | 8 +++++-- packages/bahianita/package.json | 8 +++++-- packages/bai-jamjuree/package.json | 8 +++++-- packages/baloo-2/package.json | 8 +++++-- packages/baloo-bhai-2/package.json | 8 +++++-- packages/baloo-bhaina-2/package.json | 8 +++++-- packages/baloo-chettan-2/package.json | 8 +++++-- packages/baloo-da-2/package.json | 8 +++++-- packages/baloo-paaji-2/package.json | 8 +++++-- packages/baloo-tamma-2/package.json | 8 +++++-- packages/baloo-tammudu-2/package.json | 8 +++++-- packages/baloo-thambi-2/package.json | 8 +++++-- packages/balsamiq-sans/package.json | 8 +++++-- packages/balthazar/package.json | 8 +++++-- packages/bangers/package.json | 8 +++++-- packages/barlow-condensed/package.json | 8 +++++-- packages/barlow-semi-condensed/package.json | 8 +++++-- packages/barlow/package.json | 8 +++++-- packages/barriecito/package.json | 8 +++++-- packages/barrio/package.json | 8 +++++-- packages/basic/package.json | 8 +++++-- packages/baskervville/package.json | 8 +++++-- packages/battambang/package.json | 8 +++++-- packages/baumans/package.json | 8 +++++-- packages/bayon/package.json | 8 +++++-- packages/be-vietnam/package.json | 8 +++++-- packages/bebas-neue/package.json | 8 +++++-- packages/belgrano/package.json | 8 +++++-- packages/bellefair/package.json | 8 +++++-- packages/belleza/package.json | 8 +++++-- packages/bellota-text/package.json | 8 +++++-- packages/bellota/package.json | 8 +++++-- packages/benchnine/package.json | 8 +++++-- packages/bentham/package.json | 8 +++++-- packages/berkshire-swash/package.json | 8 +++++-- packages/beth-ellen/package.json | 8 +++++-- packages/bevan/package.json | 8 +++++-- packages/big-shoulders-display/package.json | 8 +++++-- packages/big-shoulders-text/package.json | 8 +++++-- packages/bigelow-rules/package.json | 8 +++++-- packages/bigshot-one/package.json | 8 +++++-- packages/bilbo-swash-caps/package.json | 8 +++++-- packages/bilbo/package.json | 8 +++++-- packages/biorhyme-expanded/package.json | 8 +++++-- packages/biorhyme/package.json | 8 +++++-- packages/biryani/package.json | 8 +++++-- packages/bitter/package.json | 8 +++++-- packages/black-and-white-picture/package.json | 8 +++++-- packages/black-han-sans/package.json | 8 +++++-- packages/black-ops-one/package.json | 8 +++++-- packages/blackout-midnight/README.md | 5 +++-- packages/blackout-midnight/metadata.json | 14 ++++++++++++- packages/blackout-midnight/package.json | 4 ++-- packages/blackout-sunrise/README.md | 5 +++-- packages/blackout-sunrise/metadata.json | 14 ++++++++++++- packages/blackout-sunrise/package.json | 4 ++-- packages/blackout-two-am/README.md | 5 +++-- packages/blackout-two-am/metadata.json | 14 ++++++++++++- packages/blackout-two-am/package.json | 4 ++-- packages/blinker/package.json | 8 +++++-- packages/bokor/package.json | 8 +++++-- packages/bonbon/package.json | 8 +++++-- packages/boogaloo/package.json | 8 +++++-- packages/bowlby-one-sc/package.json | 8 +++++-- packages/bowlby-one/package.json | 8 +++++-- packages/brawler/package.json | 8 +++++-- packages/bree-serif/package.json | 8 +++++-- packages/bubblegum-sans/package.json | 8 +++++-- packages/bubbler-one/package.json | 8 +++++-- packages/buda/package.json | 8 +++++-- packages/buenard/package.json | 8 +++++-- packages/bungee-hairline/package.json | 8 +++++-- packages/bungee-inline/package.json | 8 +++++-- packages/bungee-outline/package.json | 8 +++++-- packages/bungee-shade/package.json | 8 +++++-- packages/bungee/package.json | 8 +++++-- packages/butcherman/package.json | 8 +++++-- packages/butterfly-kids/package.json | 8 +++++-- packages/cabin-condensed/package.json | 8 +++++-- packages/cabin-sketch/package.json | 8 +++++-- packages/cabin/package.json | 8 +++++-- packages/caesar-dressing/package.json | 8 +++++-- packages/cagliostro/package.json | 8 +++++-- packages/cairo/package.json | 8 +++++-- packages/caladea/package.json | 8 +++++-- packages/calistoga/package.json | 8 +++++-- packages/calligraffitti/package.json | 8 +++++-- packages/cambay/package.json | 8 +++++-- packages/cambo/package.json | 8 +++++-- packages/candal/package.json | 8 +++++-- packages/cantarell/package.json | 8 +++++-- packages/cantata-one/package.json | 8 +++++-- packages/cantora-one/package.json | 8 +++++-- packages/capriola/package.json | 8 +++++-- packages/cardo/package.json | 8 +++++-- packages/carme/package.json | 8 +++++-- packages/carrois-gothic-sc/package.json | 8 +++++-- packages/carrois-gothic/package.json | 8 +++++-- packages/carter-one/package.json | 8 +++++-- packages/cascadia-code/README.md | 5 +++-- packages/cascadia-code/metadata.json | 14 ++++++++++++- packages/cascadia-code/package.json | 4 ++-- packages/cascadia-mono/README.md | 5 +++-- packages/cascadia-mono/metadata.json | 14 ++++++++++++- packages/cascadia-mono/package.json | 4 ++-- packages/catamaran/package.json | 8 +++++-- packages/caudex/package.json | 8 +++++-- packages/caveat-brush/package.json | 8 +++++-- packages/caveat/package.json | 8 +++++-- packages/cedarville-cursive/package.json | 8 +++++-- packages/ceviche-one/package.json | 8 +++++-- packages/chakra-petch/package.json | 8 +++++-- packages/changa-one/package.json | 8 +++++-- packages/changa/package.json | 8 +++++-- packages/chango/package.json | 8 +++++-- packages/charm/package.json | 8 +++++-- packages/charmonman/package.json | 8 +++++-- packages/chathura/package.json | 8 +++++-- packages/chau-philomene-one/package.json | 8 +++++-- packages/chela-one/package.json | 8 +++++-- packages/chelsea-market/package.json | 8 +++++-- packages/chenla/package.json | 8 +++++-- packages/cherry-cream-soda/package.json | 8 +++++-- packages/cherry-swash/package.json | 8 +++++-- packages/chewy/package.json | 8 +++++-- packages/chicle/package.json | 8 +++++-- packages/chilanka/package.json | 8 +++++-- packages/chivo/package.json | 8 +++++-- packages/chonburi/package.json | 8 +++++-- packages/chunk-five/README.md | 5 +++-- packages/chunk-five/metadata.json | 14 ++++++++++++- packages/chunk-five/package.json | 4 ++-- packages/cinzel-decorative/package.json | 8 +++++-- packages/cinzel/package.json | 8 +++++-- packages/clicker-script/package.json | 8 +++++-- packages/coda-caption/package.json | 8 +++++-- packages/coda/package.json | 8 +++++-- packages/codystar/package.json | 8 +++++-- packages/coiny/package.json | 8 +++++-- packages/combo/package.json | 8 +++++-- packages/comfortaa/package.json | 8 +++++-- packages/comic-neue/package.json | 8 +++++-- packages/coming-soon/package.json | 8 +++++-- packages/concert-one/package.json | 8 +++++-- packages/condiment/package.json | 8 +++++-- packages/content/package.json | 8 +++++-- packages/contrail-one/package.json | 8 +++++-- packages/convergence/package.json | 8 +++++-- packages/cookie/package.json | 8 +++++-- packages/copse/package.json | 8 +++++-- packages/corben/package.json | 8 +++++-- packages/cormorant-garamond/package.json | 8 +++++-- packages/cormorant-infant/package.json | 8 +++++-- packages/cormorant-sc/package.json | 8 +++++-- packages/cormorant-unicase/package.json | 8 +++++-- packages/cormorant-upright/package.json | 8 +++++-- packages/cormorant/package.json | 8 +++++-- packages/courgette/package.json | 8 +++++-- packages/courier-prime/package.json | 8 +++++-- packages/cousine/package.json | 8 +++++-- packages/coustard/package.json | 8 +++++-- packages/covered-by-your-grace/package.json | 8 +++++-- packages/crafty-girls/package.json | 8 +++++-- packages/creepster/package.json | 8 +++++-- packages/crete-round/package.json | 8 +++++-- packages/crimson-pro/package.json | 8 +++++-- packages/crimson-text/package.json | 8 +++++-- packages/croissant-one/package.json | 8 +++++-- packages/crushed/package.json | 8 +++++-- packages/cuprum/package.json | 8 +++++-- packages/cute-font/package.json | 8 +++++-- packages/cutive-mono/package.json | 8 +++++-- packages/cutive/package.json | 8 +++++-- packages/damion/package.json | 8 +++++-- packages/dancing-script/package.json | 8 +++++-- packages/dangrek/package.json | 8 +++++-- packages/darker-grotesque/package.json | 8 +++++-- packages/david-libre/package.json | 8 +++++-- packages/dawning-of-a-new-day/package.json | 8 +++++-- packages/days-one/package.json | 8 +++++-- packages/dekko/package.json | 8 +++++-- packages/delius-swash-caps/package.json | 8 +++++-- packages/delius-unicase/package.json | 8 +++++-- packages/delius/package.json | 8 +++++-- packages/della-respira/package.json | 8 +++++-- packages/denk-one/package.json | 8 +++++-- packages/devonshire/package.json | 8 +++++-- packages/dhurjati/package.json | 8 +++++-- packages/didact-gothic/package.json | 8 +++++-- packages/diplomata-sc/package.json | 8 +++++-- packages/diplomata/package.json | 8 +++++-- packages/dm-mono/package.json | 8 +++++-- packages/dm-sans/package.json | 8 +++++-- packages/dm-serif-display/package.json | 8 +++++-- packages/dm-serif-text/package.json | 8 +++++-- packages/do-hyeon/package.json | 8 +++++-- packages/dokdo/package.json | 8 +++++-- packages/domine/package.json | 8 +++++-- packages/donegal-one/package.json | 8 +++++-- packages/doppio-one/package.json | 8 +++++-- packages/dorsa/package.json | 8 +++++-- packages/dosis/package.json | 8 +++++-- packages/dr-sugiyama/package.json | 8 +++++-- packages/dseg-weather/README.md | 5 +++-- packages/dseg-weather/metadata.json | 14 ++++++++++++- packages/dseg-weather/package.json | 4 ++-- packages/dseg14/README.md | 5 +++-- packages/dseg14/metadata.json | 14 ++++++++++++- packages/dseg14/package.json | 4 ++-- packages/dseg7/README.md | 5 +++-- packages/dseg7/metadata.json | 21 ++++++++++++++++++- packages/dseg7/package.json | 4 ++-- packages/duru-sans/package.json | 8 +++++-- packages/dynalight/package.json | 8 +++++-- packages/eagle-lake/package.json | 8 +++++-- packages/east-sea-dokdo/package.json | 8 +++++-- packages/eater/package.json | 8 +++++-- packages/eb-garamond/package.json | 8 +++++-- packages/economica/package.json | 8 +++++-- packages/eczar/package.json | 8 +++++-- packages/el-messiri/package.json | 8 +++++-- packages/electrolize/package.json | 8 +++++-- packages/elsie-swash-caps/package.json | 8 +++++-- packages/elsie/package.json | 8 +++++-- packages/emblema-one/package.json | 8 +++++-- packages/emilys-candy/package.json | 8 +++++-- packages/encode-sans-condensed/package.json | 8 +++++-- packages/encode-sans-expanded/package.json | 8 +++++-- .../encode-sans-semi-condensed/package.json | 8 +++++-- .../encode-sans-semi-expanded/package.json | 8 +++++-- packages/encode-sans/package.json | 8 +++++-- packages/engagement/package.json | 8 +++++-- packages/englebert/package.json | 8 +++++-- packages/enriqueta/package.json | 8 +++++-- packages/epilogue/package.json | 8 +++++-- packages/erica-one/package.json | 8 +++++-- packages/esteban/package.json | 8 +++++-- packages/euphoria-script/package.json | 8 +++++-- packages/ewert/package.json | 8 +++++-- packages/exo-2/package.json | 8 +++++-- packages/exo/package.json | 8 +++++-- packages/expletus-sans/package.json | 8 +++++-- packages/fahkwang/package.json | 8 +++++-- packages/fanwood-text/package.json | 8 +++++-- packages/farro/package.json | 8 +++++-- packages/farsan/package.json | 8 +++++-- packages/fascinate-inline/package.json | 8 +++++-- packages/fascinate/package.json | 8 +++++-- packages/faster-one/package.json | 8 +++++-- packages/fasthand/package.json | 8 +++++-- packages/fauna-one/package.json | 8 +++++-- packages/faustina/package.json | 8 +++++-- packages/federant/package.json | 8 +++++-- packages/federo/package.json | 8 +++++-- packages/felipa/package.json | 8 +++++-- packages/fenix/package.json | 8 +++++-- packages/finger-paint/package.json | 8 +++++-- packages/fira-code/package.json | 8 +++++-- packages/fira-mono/package.json | 8 +++++-- packages/fira-sans-condensed/package.json | 8 +++++-- .../fira-sans-extra-condensed/package.json | 8 +++++-- packages/fira-sans/package.json | 8 +++++-- packages/fjalla-one/package.json | 8 +++++-- packages/fjord-one/package.json | 8 +++++-- packages/flamenco/package.json | 8 +++++-- packages/flavors/package.json | 8 +++++-- packages/fondamento/package.json | 8 +++++-- packages/fontdiner-swanky/package.json | 8 +++++-- packages/forum/package.json | 8 +++++-- packages/francois-one/package.json | 8 +++++-- packages/frank-ruhl-libre/package.json | 8 +++++-- packages/freckle-face/package.json | 8 +++++-- packages/fredericka-the-great/package.json | 8 +++++-- packages/fredoka-one/package.json | 8 +++++-- packages/freehand/package.json | 8 +++++-- packages/fresca/package.json | 8 +++++-- packages/frijole/package.json | 8 +++++-- packages/fruktur/package.json | 8 +++++-- packages/fugaz-one/package.json | 8 +++++-- packages/gabriela/package.json | 8 +++++-- packages/gaegu/package.json | 8 +++++-- packages/gafata/package.json | 8 +++++-- packages/galada/package.json | 8 +++++-- packages/galdeano/package.json | 8 +++++-- packages/galindo/package.json | 8 +++++-- packages/gamja-flower/package.json | 8 +++++-- packages/gayathri/package.json | 8 +++++-- packages/gelasio/package.json | 8 +++++-- packages/gentium-basic/package.json | 8 +++++-- packages/gentium-book-basic/package.json | 8 +++++-- packages/geo/package.json | 8 +++++-- packages/geostar-fill/package.json | 8 +++++-- packages/geostar/package.json | 8 +++++-- packages/germania-one/package.json | 8 +++++-- packages/gfs-didot/package.json | 8 +++++-- packages/gfs-neohellenic/package.json | 8 +++++-- packages/gidugu/package.json | 8 +++++-- packages/gilda-display/package.json | 8 +++++-- packages/girassol/package.json | 8 +++++-- packages/give-you-glory/package.json | 8 +++++-- packages/glass-antiqua/package.json | 8 +++++-- packages/glegoo/package.json | 8 +++++-- packages/gloria-hallelujah/package.json | 8 +++++-- packages/goblin-one/package.json | 8 +++++-- packages/gochi-hand/package.json | 8 +++++-- packages/gorditas/package.json | 8 +++++-- packages/gothic-a1/package.json | 8 +++++-- packages/gotu/package.json | 8 +++++-- packages/goudy-bookletter-1911/package.json | 8 +++++-- packages/graduate/package.json | 8 +++++-- packages/grand-hotel/package.json | 8 +++++-- packages/gravitas-one/package.json | 8 +++++-- packages/great-vibes/package.json | 8 +++++-- packages/grenze-gotisch/package.json | 8 +++++-- packages/grenze/package.json | 8 +++++-- packages/griffy/package.json | 8 +++++-- packages/gruppo/package.json | 8 +++++-- packages/gudea/package.json | 8 +++++-- packages/gugi/package.json | 8 +++++-- packages/gupter/package.json | 8 +++++-- packages/gurajada/package.json | 8 +++++-- packages/habibi/package.json | 8 +++++-- packages/halant/package.json | 8 +++++-- packages/hammersmith-one/package.json | 8 +++++-- packages/hanalei-fill/package.json | 8 +++++-- packages/hanalei/package.json | 8 +++++-- packages/handlee/package.json | 8 +++++-- packages/hanuman/package.json | 8 +++++-- packages/happy-monkey/package.json | 8 +++++-- packages/harmattan/package.json | 8 +++++-- packages/headland-one/package.json | 8 +++++-- packages/heebo/package.json | 8 +++++-- packages/henny-penny/package.json | 8 +++++-- packages/hepta-slab/package.json | 8 +++++-- packages/herr-von-muellerhoff/package.json | 8 +++++-- packages/hi-melody/package.json | 8 +++++-- packages/hind-guntur/package.json | 8 +++++-- packages/hind-madurai/package.json | 8 +++++-- packages/hind-siliguri/package.json | 8 +++++-- packages/hind-vadodara/package.json | 8 +++++-- packages/hind/package.json | 8 +++++-- packages/holtwood-one-sc/package.json | 8 +++++-- packages/homemade-apple/package.json | 8 +++++-- packages/homenaje/package.json | 8 +++++-- packages/ibarra-real-nova/package.json | 8 +++++-- packages/ibm-plex-mono/package.json | 8 +++++-- packages/ibm-plex-sans-condensed/package.json | 8 +++++-- packages/ibm-plex-sans/package.json | 8 +++++-- packages/ibm-plex-serif/package.json | 8 +++++-- packages/iceberg/package.json | 8 +++++-- packages/iceland/package.json | 8 +++++-- packages/im-fell-double-pica-sc/package.json | 8 +++++-- packages/im-fell-double-pica/package.json | 8 +++++-- packages/im-fell-dw-pica-sc/package.json | 8 +++++-- packages/im-fell-dw-pica/package.json | 8 +++++-- packages/im-fell-english-sc/package.json | 8 +++++-- packages/im-fell-english/package.json | 8 +++++-- packages/im-fell-french-canon-sc/package.json | 8 +++++-- packages/im-fell-french-canon/package.json | 8 +++++-- packages/im-fell-great-primer-sc/package.json | 8 +++++-- packages/im-fell-great-primer/package.json | 8 +++++-- packages/imprima/package.json | 8 +++++-- packages/inconsolata/package.json | 8 +++++-- packages/inder/package.json | 8 +++++-- packages/indie-flower/package.json | 8 +++++-- packages/inika/package.json | 8 +++++-- packages/inknut-antiqua/package.json | 8 +++++-- packages/inria-sans/package.json | 8 +++++-- packages/inria-serif/package.json | 8 +++++-- packages/inter/package.json | 8 +++++-- packages/irish-grover/package.json | 8 +++++-- packages/istok-web/package.json | 8 +++++-- packages/italiana/package.json | 8 +++++-- packages/italianno/package.json | 8 +++++-- packages/itim/package.json | 8 +++++-- packages/jacques-francois-shadow/package.json | 8 +++++-- packages/jacques-francois/package.json | 8 +++++-- packages/jaldi/package.json | 8 +++++-- packages/jetbrains-mono/README.md | 5 +++-- packages/jetbrains-mono/metadata.json | 14 ++++++++++++- packages/jetbrains-mono/package.json | 4 ++-- packages/jim-nightshade/package.json | 8 +++++-- packages/jockey-one/package.json | 8 +++++-- packages/jolly-lodger/package.json | 8 +++++-- packages/jomhuria/package.json | 8 +++++-- packages/jomolhari/package.json | 8 +++++-- packages/josefin-sans/package.json | 8 +++++-- packages/josefin-slab/package.json | 8 +++++-- packages/jost/package.json | 8 +++++-- packages/joti-one/package.json | 8 +++++-- packages/jua/package.json | 8 +++++-- packages/judson/package.json | 8 +++++-- packages/julee/package.json | 8 +++++-- packages/julius-sans-one/package.json | 8 +++++-- packages/junction/README.md | 5 +++-- packages/junction/metadata.json | 14 ++++++++++++- packages/junction/package.json | 4 ++-- packages/junge/package.json | 8 +++++-- packages/jura/package.json | 8 +++++-- packages/just-another-hand/package.json | 8 +++++-- packages/just-me-again-down-here/package.json | 8 +++++-- packages/k2d/package.json | 8 +++++-- packages/kadwa/package.json | 8 +++++-- packages/kalam/package.json | 8 +++++-- packages/kameron/package.json | 8 +++++-- packages/kanit/package.json | 8 +++++-- packages/kantumruy/package.json | 8 +++++-- packages/karla/package.json | 8 +++++-- packages/karma/package.json | 8 +++++-- packages/karmilla/README.md | 5 +++-- packages/karmilla/metadata.json | 14 ++++++++++++- packages/karmilla/package.json | 4 ++-- packages/katibeh/package.json | 8 +++++-- packages/kaushan-script/package.json | 8 +++++-- packages/kavivanar/package.json | 8 +++++-- packages/kavoon/package.json | 8 +++++-- packages/kdam-thmor/package.json | 8 +++++-- packages/keania-one/package.json | 8 +++++-- packages/kelly-slab/package.json | 8 +++++-- packages/kenia/package.json | 8 +++++-- packages/khand/package.json | 8 +++++-- packages/khmer/package.json | 8 +++++-- packages/khula/package.json | 8 +++++-- packages/kirang-haerang/package.json | 8 +++++-- packages/kite-one/package.json | 8 +++++-- packages/knewave/package.json | 8 +++++-- packages/kodchasan/package.json | 8 +++++-- packages/koho/package.json | 8 +++++-- packages/kosugi-maru/package.json | 8 +++++-- packages/kosugi/package.json | 8 +++++-- packages/kotta-one/package.json | 8 +++++-- packages/koulen/package.json | 8 +++++-- packages/kranky/package.json | 8 +++++-- packages/kreon/package.json | 8 +++++-- packages/kristi/package.json | 8 +++++-- packages/krona-one/package.json | 8 +++++-- packages/krub/package.json | 8 +++++-- packages/kulim-park/package.json | 8 +++++-- packages/kumar-one-outline/package.json | 8 +++++-- packages/kumar-one/package.json | 8 +++++-- packages/kurale/package.json | 8 +++++-- packages/la-belle-aurore/package.json | 8 +++++-- packages/lacquer/package.json | 8 +++++-- packages/laila/package.json | 8 +++++-- packages/lakki-reddy/package.json | 8 +++++-- packages/lalezar/package.json | 8 +++++-- packages/lancelot/package.json | 8 +++++-- packages/lateef/package.json | 8 +++++-- packages/lato/package.json | 8 +++++-- packages/league-gothic-condensed/README.md | 5 +++-- .../league-gothic-condensed/metadata.json | 14 ++++++++++++- packages/league-gothic-condensed/package.json | 4 ++-- packages/league-gothic/README.md | 5 +++-- packages/league-gothic/metadata.json | 14 ++++++++++++- packages/league-gothic/package.json | 4 ++-- packages/league-mono-condensed/README.md | 5 +++-- packages/league-mono-condensed/metadata.json | 14 ++++++++++++- packages/league-mono-condensed/package.json | 4 ++-- packages/league-mono-extended/README.md | 5 +++-- packages/league-mono-extended/metadata.json | 14 ++++++++++++- packages/league-mono-extended/package.json | 4 ++-- packages/league-mono-narrow/README.md | 5 +++-- packages/league-mono-narrow/metadata.json | 14 ++++++++++++- packages/league-mono-narrow/package.json | 4 ++-- packages/league-mono-wide/README.md | 5 +++-- packages/league-mono-wide/metadata.json | 14 ++++++++++++- packages/league-mono-wide/package.json | 4 ++-- packages/league-mono/README.md | 5 +++-- packages/league-mono/metadata.json | 14 ++++++++++++- packages/league-mono/package.json | 4 ++-- packages/league-script/package.json | 8 +++++-- packages/league-spartan/README.md | 5 +++-- packages/league-spartan/metadata.json | 14 ++++++++++++- packages/league-spartan/package.json | 4 ++-- packages/leckerli-one/package.json | 8 +++++-- packages/ledger/package.json | 8 +++++-- packages/lekton/package.json | 8 +++++-- packages/lemon/package.json | 8 +++++-- packages/lemonada/package.json | 8 +++++-- packages/lexend-deca/package.json | 8 +++++-- packages/lexend-exa/package.json | 8 +++++-- packages/lexend-giga/package.json | 8 +++++-- packages/lexend-mega/package.json | 8 +++++-- packages/lexend-peta/package.json | 8 +++++-- packages/lexend-tera/package.json | 8 +++++-- packages/lexend-zetta/package.json | 8 +++++-- packages/libre-barcode-128-text/package.json | 8 +++++-- packages/libre-barcode-128/package.json | 8 +++++-- .../package.json | 8 +++++-- .../libre-barcode-39-extended/package.json | 8 +++++-- packages/libre-barcode-39-text/package.json | 8 +++++-- packages/libre-barcode-39/package.json | 8 +++++-- packages/libre-baskerville/package.json | 8 +++++-- packages/libre-caslon-display/package.json | 8 +++++-- packages/libre-caslon-text/package.json | 8 +++++-- packages/libre-franklin/package.json | 8 +++++-- packages/life-savers/package.json | 8 +++++-- packages/lilita-one/package.json | 8 +++++-- packages/lily-script-one/package.json | 8 +++++-- packages/limelight/package.json | 8 +++++-- packages/linden-hill/package.json | 8 +++++-- packages/literata/package.json | 8 +++++-- packages/liu-jian-mao-cao/package.json | 8 +++++-- packages/livvic/package.json | 8 +++++-- packages/lobster-two/package.json | 8 +++++-- packages/lobster/package.json | 8 +++++-- packages/londrina-outline/package.json | 8 +++++-- packages/londrina-shadow/package.json | 8 +++++-- packages/londrina-sketch/package.json | 8 +++++-- packages/londrina-solid/package.json | 8 +++++-- packages/long-cang/package.json | 8 +++++-- packages/lora/package.json | 8 +++++-- packages/love-ya-like-a-sister/package.json | 8 +++++-- packages/loved-by-the-king/package.json | 8 +++++-- packages/lovers-quarrel/package.json | 8 +++++-- packages/luckiest-guy/package.json | 8 +++++-- packages/lusitana/package.json | 8 +++++-- packages/lustria/package.json | 8 +++++-- packages/m-plus-1p/package.json | 8 +++++-- packages/m-plus-rounded-1c/package.json | 8 +++++-- packages/ma-shan-zheng/package.json | 8 +++++-- packages/macondo-swash-caps/package.json | 8 +++++-- packages/macondo/package.json | 8 +++++-- packages/mada/package.json | 8 +++++-- packages/magra/package.json | 8 +++++-- packages/maiden-orange/package.json | 8 +++++-- packages/maitree/package.json | 8 +++++-- packages/major-mono-display/package.json | 8 +++++-- packages/mako/package.json | 8 +++++-- packages/mali/package.json | 8 +++++-- packages/mallanna/package.json | 8 +++++-- packages/mandali/package.json | 8 +++++-- packages/manjari/package.json | 8 +++++-- packages/manrope/package.json | 8 +++++-- packages/mansalva/package.json | 8 +++++-- packages/manuale/package.json | 8 +++++-- packages/marcellus-sc/package.json | 8 +++++-- packages/marcellus/package.json | 8 +++++-- packages/marck-script/package.json | 8 +++++-- packages/margarine/package.json | 8 +++++-- packages/markazi-text/package.json | 8 +++++-- packages/marko-one/package.json | 8 +++++-- packages/marmelad/package.json | 8 +++++-- packages/martel-sans/package.json | 8 +++++-- packages/martel/package.json | 8 +++++-- packages/marvel/package.json | 8 +++++-- packages/mate-sc/package.json | 8 +++++-- packages/mate/package.json | 8 +++++-- packages/maven-pro/package.json | 8 +++++-- packages/mclaren/package.json | 8 +++++-- packages/meddon/package.json | 8 +++++-- packages/medievalsharp/package.json | 8 +++++-- packages/medula-one/package.json | 8 +++++-- packages/meera-inimai/package.json | 8 +++++-- packages/megrim/package.json | 8 +++++-- packages/meie-script/package.json | 8 +++++-- packages/merienda-one/package.json | 8 +++++-- packages/merienda/package.json | 8 +++++-- packages/merriweather-sans/package.json | 8 +++++-- packages/merriweather/package.json | 8 +++++-- packages/metal-mania/package.json | 8 +++++-- packages/metal/package.json | 8 +++++-- packages/metamorphous/package.json | 8 +++++-- packages/metrophobic/package.json | 8 +++++-- packages/michroma/package.json | 8 +++++-- packages/milonga/package.json | 8 +++++-- packages/miltonian-tattoo/package.json | 8 +++++-- packages/miltonian/package.json | 8 +++++-- packages/mina/package.json | 8 +++++-- packages/miniver/package.json | 8 +++++-- packages/miriam-libre/package.json | 8 +++++-- packages/mirza/package.json | 8 +++++-- packages/miss-fajardose/package.json | 8 +++++-- packages/mitr/package.json | 8 +++++-- packages/modak/package.json | 8 +++++-- packages/modern-antiqua/package.json | 8 +++++-- packages/mogra/package.json | 8 +++++-- packages/molengo/package.json | 8 +++++-- packages/molle/package.json | 8 +++++-- packages/monda/package.json | 8 +++++-- packages/monofett/package.json | 8 +++++-- packages/monoton/package.json | 8 +++++-- packages/monsieur-la-doulaise/package.json | 8 +++++-- packages/montaga/package.json | 8 +++++-- packages/montez/package.json | 8 +++++-- packages/montserrat-alternates/package.json | 8 +++++-- packages/montserrat-subrayada/package.json | 8 +++++-- packages/montserrat/package.json | 8 +++++-- packages/moul/package.json | 8 +++++-- packages/moulpali/package.json | 8 +++++-- packages/mountains-of-christmas/package.json | 8 +++++-- packages/mouse-memoirs/package.json | 8 +++++-- packages/mr-bedfort/package.json | 8 +++++-- packages/mr-dafoe/package.json | 8 +++++-- packages/mr-de-haviland/package.json | 8 +++++-- packages/mrs-saint-delafield/package.json | 8 +++++-- packages/mrs-sheppards/package.json | 8 +++++-- packages/mukta-mahee/package.json | 8 +++++-- packages/mukta-malar/package.json | 8 +++++-- packages/mukta-vaani/package.json | 8 +++++-- packages/mukta/package.json | 8 +++++-- packages/muli/package.json | 8 +++++-- packages/mulish/package.json | 8 +++++-- packages/museomoderno/package.json | 8 +++++-- packages/mystery-quest/package.json | 8 +++++-- packages/nanum-brush-script/package.json | 8 +++++-- packages/nanum-gothic-coding/package.json | 8 +++++-- packages/nanum-gothic/package.json | 8 +++++-- packages/nanum-myeongjo/package.json | 8 +++++-- packages/nanum-pen-script/package.json | 8 +++++-- packages/neucha/package.json | 8 +++++-- packages/neuton/package.json | 8 +++++-- packages/new-rocker/package.json | 8 +++++-- packages/news-cycle/package.json | 8 +++++-- packages/niconne/package.json | 8 +++++-- packages/niramit/package.json | 8 +++++-- packages/nixie-one/package.json | 8 +++++-- packages/nobile/package.json | 8 +++++-- packages/nokora/package.json | 8 +++++-- packages/norican/package.json | 8 +++++-- packages/nosifer/package.json | 8 +++++-- packages/notable/package.json | 8 +++++-- packages/nothing-you-could-do/package.json | 8 +++++-- packages/noticia-text/package.json | 8 +++++-- packages/noto-sans-hk/package.json | 8 +++++-- packages/noto-sans-jp/package.json | 8 +++++-- packages/noto-sans-kr/package.json | 8 +++++-- packages/noto-sans-sc/package.json | 8 +++++-- packages/noto-sans-tc/package.json | 8 +++++-- packages/noto-sans/package.json | 8 +++++-- packages/noto-serif-jp/package.json | 8 +++++-- packages/noto-serif-kr/package.json | 8 +++++-- packages/noto-serif-sc/package.json | 8 +++++-- packages/noto-serif-tc/package.json | 8 +++++-- packages/noto-serif/package.json | 8 +++++-- packages/nova-cut/package.json | 8 +++++-- packages/nova-flat/package.json | 8 +++++-- packages/nova-mono/package.json | 8 +++++-- packages/nova-oval/package.json | 8 +++++-- packages/nova-round/package.json | 8 +++++-- packages/nova-script/package.json | 8 +++++-- packages/nova-slim/package.json | 8 +++++-- packages/nova-square/package.json | 8 +++++-- packages/ntr/package.json | 8 +++++-- packages/numans/package.json | 8 +++++-- packages/nunito-sans/package.json | 8 +++++-- packages/nunito/package.json | 8 +++++-- packages/odibee-sans/package.json | 8 +++++-- packages/odor-mean-chey/package.json | 8 +++++-- packages/offside/package.json | 8 +++++-- packages/old-standard-tt/package.json | 8 +++++-- packages/oldenburg/package.json | 8 +++++-- packages/oleo-script-swash-caps/package.json | 8 +++++-- packages/oleo-script/package.json | 8 +++++-- packages/open-sans-condensed/package.json | 8 +++++-- packages/open-sans/package.json | 8 +++++-- packages/oranienbaum/package.json | 8 +++++-- packages/orbitron/package.json | 8 +++++-- packages/oregano/package.json | 8 +++++-- packages/orienta/package.json | 8 +++++-- packages/original-surfer/package.json | 8 +++++-- packages/ostrich-sans-dashed/README.md | 5 +++-- packages/ostrich-sans-dashed/metadata.json | 14 ++++++++++++- packages/ostrich-sans-dashed/package.json | 4 ++-- packages/ostrich-sans-inline/README.md | 5 +++-- packages/ostrich-sans-inline/metadata.json | 14 ++++++++++++- packages/ostrich-sans-inline/package.json | 4 ++-- packages/ostrich-sans-rounded/README.md | 5 +++-- packages/ostrich-sans-rounded/metadata.json | 14 ++++++++++++- packages/ostrich-sans-rounded/package.json | 4 ++-- packages/ostrich-sans/README.md | 5 +++-- packages/ostrich-sans/metadata.json | 14 ++++++++++++- packages/ostrich-sans/package.json | 4 ++-- packages/oswald/package.json | 8 +++++-- packages/over-the-rainbow/package.json | 8 +++++-- packages/overlock-sc/package.json | 8 +++++-- packages/overlock/package.json | 8 +++++-- packages/overpass-mono/package.json | 8 +++++-- packages/overpass/package.json | 8 +++++-- packages/ovo/package.json | 8 +++++-- packages/oxanium/package.json | 8 +++++-- packages/oxygen-mono/package.json | 8 +++++-- packages/oxygen/package.json | 8 +++++-- packages/pacifico/package.json | 8 +++++-- packages/padauk/package.json | 8 +++++-- packages/palanquin-dark/package.json | 8 +++++-- packages/palanquin/package.json | 8 +++++-- packages/pangolin/package.json | 8 +++++-- packages/paprika/package.json | 8 +++++-- packages/parisienne/package.json | 8 +++++-- packages/passero-one/package.json | 8 +++++-- packages/passion-one/package.json | 8 +++++-- packages/pathway-gothic-one/package.json | 8 +++++-- packages/patrick-hand-sc/package.json | 8 +++++-- packages/patrick-hand/package.json | 8 +++++-- packages/pattaya/package.json | 8 +++++-- packages/patua-one/package.json | 8 +++++-- packages/pavanam/package.json | 8 +++++-- packages/paytone-one/package.json | 8 +++++-- packages/peddana/package.json | 8 +++++-- packages/peralta/package.json | 8 +++++-- packages/permanent-marker/package.json | 8 +++++-- packages/petit-formal-script/package.json | 8 +++++-- packages/petrona/package.json | 8 +++++-- packages/philosopher/package.json | 8 +++++-- packages/piedra/package.json | 8 +++++-- packages/pinyon-script/package.json | 8 +++++-- packages/pirata-one/package.json | 8 +++++-- packages/plaster/package.json | 8 +++++-- packages/play/package.json | 8 +++++-- packages/playball/package.json | 8 +++++-- packages/playfair-display-sc/package.json | 8 +++++-- packages/playfair-display/package.json | 8 +++++-- packages/podkova/package.json | 8 +++++-- packages/poiret-one/package.json | 8 +++++-- packages/poller-one/package.json | 8 +++++-- packages/poly/package.json | 8 +++++-- packages/pompiere/package.json | 8 +++++-- packages/pontano-sans/package.json | 8 +++++-- packages/poor-story/package.json | 8 +++++-- packages/poppins/package.json | 8 +++++-- packages/port-lligat-sans/package.json | 8 +++++-- packages/port-lligat-slab/package.json | 8 +++++-- packages/pragati-narrow/package.json | 8 +++++-- packages/prata/package.json | 8 +++++-- packages/preahvihear/package.json | 8 +++++-- packages/press-start-2p/package.json | 8 +++++-- packages/pridi/package.json | 8 +++++-- packages/princess-sofia/package.json | 8 +++++-- packages/prociono/package.json | 8 +++++-- packages/prompt/package.json | 8 +++++-- packages/prosto-one/package.json | 8 +++++-- packages/proza-libre/package.json | 8 +++++-- packages/pt-mono/package.json | 8 +++++-- packages/pt-sans-caption/package.json | 8 +++++-- packages/pt-sans-narrow/package.json | 8 +++++-- packages/pt-sans/package.json | 8 +++++-- packages/pt-serif-caption/package.json | 8 +++++-- packages/pt-serif/package.json | 8 +++++-- packages/public-sans/package.json | 8 +++++-- packages/puritan/package.json | 8 +++++-- packages/purple-purse/package.json | 8 +++++-- packages/quando/package.json | 8 +++++-- packages/quantico/package.json | 8 +++++-- packages/quattrocento-sans/package.json | 8 +++++-- packages/quattrocento/package.json | 8 +++++-- packages/questrial/package.json | 8 +++++-- packages/quicksand/package.json | 8 +++++-- packages/quintessential/package.json | 8 +++++-- packages/qwigley/package.json | 8 +++++-- packages/racing-sans-one/package.json | 8 +++++-- packages/radley/package.json | 8 +++++-- packages/rajdhani/package.json | 8 +++++-- packages/rakkas/package.json | 8 +++++-- packages/raleway-dots/package.json | 8 +++++-- packages/raleway/package.json | 8 +++++-- packages/ramabhadra/package.json | 8 +++++-- packages/ramaraja/package.json | 8 +++++-- packages/rambla/package.json | 8 +++++-- packages/rammetto-one/package.json | 8 +++++-- packages/ranchers/package.json | 8 +++++-- packages/rancho/package.json | 8 +++++-- packages/ranga/package.json | 8 +++++-- packages/rasa/package.json | 8 +++++-- packages/rationale/package.json | 8 +++++-- packages/ravi-prakash/package.json | 8 +++++-- packages/recursive/package.json | 7 ++++++- packages/red-hat-display/package.json | 8 +++++-- packages/red-hat-text/package.json | 8 +++++-- packages/red-rose/package.json | 8 +++++-- packages/redressed/package.json | 8 +++++-- packages/reem-kufi/package.json | 8 +++++-- packages/reenie-beanie/package.json | 8 +++++-- packages/revalia/package.json | 8 +++++-- packages/rhodium-libre/package.json | 8 +++++-- packages/ribeye-marrow/package.json | 8 +++++-- packages/ribeye/package.json | 8 +++++-- packages/righteous/package.json | 8 +++++-- packages/risque/package.json | 8 +++++-- packages/roboto-condensed/package.json | 8 +++++-- packages/roboto-mono/package.json | 8 +++++-- packages/roboto-slab/package.json | 8 +++++-- packages/roboto/package.json | 8 +++++-- packages/rochester/package.json | 8 +++++-- packages/rock-salt/package.json | 8 +++++-- packages/rokkitt/package.json | 8 +++++-- packages/romanesco/package.json | 8 +++++-- packages/ropa-sans/package.json | 8 +++++-- packages/rosario/package.json | 8 +++++-- packages/rosarivo/package.json | 8 +++++-- packages/rouge-script/package.json | 8 +++++-- packages/rowdies/package.json | 8 +++++-- packages/rozha-one/package.json | 8 +++++-- packages/rubik-mono-one/package.json | 8 +++++-- packages/rubik/package.json | 8 +++++-- packages/ruda/package.json | 8 +++++-- packages/rufina/package.json | 8 +++++-- packages/ruge-boogie/package.json | 8 +++++-- packages/ruluko/package.json | 8 +++++-- packages/rum-raisin/package.json | 8 +++++-- packages/ruslan-display/package.json | 8 +++++-- packages/russo-one/package.json | 8 +++++-- packages/ruthie/package.json | 8 +++++-- packages/rye/package.json | 8 +++++-- packages/sacramento/package.json | 8 +++++-- packages/sahitya/package.json | 8 +++++-- packages/sail/package.json | 8 +++++-- packages/saira-condensed/package.json | 8 +++++-- packages/saira-extra-condensed/package.json | 8 +++++-- packages/saira-semi-condensed/package.json | 8 +++++-- packages/saira-stencil-one/package.json | 8 +++++-- packages/saira/package.json | 8 +++++-- packages/salsa/package.json | 8 +++++-- packages/sanchez/package.json | 8 +++++-- packages/sancreek/package.json | 8 +++++-- packages/sansita/package.json | 8 +++++-- packages/sarabun/package.json | 8 +++++-- packages/sarala/package.json | 8 +++++-- packages/sarina/package.json | 8 +++++-- packages/sarpanch/package.json | 8 +++++-- packages/satisfy/package.json | 8 +++++-- packages/sawarabi-gothic/package.json | 8 +++++-- packages/sawarabi-mincho/package.json | 8 +++++-- packages/scada/package.json | 8 +++++-- packages/scheherazade/package.json | 8 +++++-- packages/schoolbell/package.json | 8 +++++-- packages/scope-one/package.json | 8 +++++-- packages/seaweed-script/package.json | 8 +++++-- packages/secular-one/package.json | 8 +++++-- packages/sedgwick-ave-display/package.json | 8 +++++-- packages/sedgwick-ave/package.json | 8 +++++-- packages/sen/package.json | 8 +++++-- packages/sevillana/package.json | 8 +++++-- packages/seymour-one/package.json | 8 +++++-- packages/shadows-into-light-two/package.json | 8 +++++-- packages/shadows-into-light/package.json | 8 +++++-- packages/shanti/package.json | 8 +++++-- packages/share-tech-mono/package.json | 8 +++++-- packages/share-tech/package.json | 8 +++++-- packages/share/package.json | 8 +++++-- packages/shojumaru/package.json | 8 +++++-- packages/short-stack/package.json | 8 +++++-- packages/shrikhand/package.json | 8 +++++-- packages/siemreap/package.json | 8 +++++-- packages/sigmar-one/package.json | 8 +++++-- packages/signika-negative/package.json | 8 +++++-- packages/signika/package.json | 8 +++++-- packages/simonetta/package.json | 8 +++++-- packages/single-day/package.json | 8 +++++-- packages/sintony/package.json | 8 +++++-- packages/sirin-stencil/package.json | 8 +++++-- packages/six-caps/package.json | 8 +++++-- packages/skranji/package.json | 8 +++++-- packages/slabo-13px/package.json | 8 +++++-- packages/slabo-27px/package.json | 8 +++++-- packages/slackey/package.json | 8 +++++-- packages/smokum/package.json | 8 +++++-- packages/smythe/package.json | 8 +++++-- packages/sniglet/package.json | 8 +++++-- packages/snippet/package.json | 8 +++++-- packages/snowburst-one/package.json | 8 +++++-- packages/sofadi-one/package.json | 8 +++++-- packages/sofia/package.json | 8 +++++-- packages/solway/package.json | 8 +++++-- packages/song-myung/package.json | 8 +++++-- packages/sonsie-one/package.json | 8 +++++-- packages/sora/package.json | 8 +++++-- packages/sorts-mill-goudy/package.json | 8 +++++-- packages/source-code-pro/package.json | 8 +++++-- packages/source-sans-pro/package.json | 8 +++++-- packages/source-serif-pro/package.json | 8 +++++-- packages/space-mono/package.json | 8 +++++-- packages/spartan/package.json | 8 +++++-- packages/special-elite/package.json | 8 +++++-- packages/spectral-sc/package.json | 8 +++++-- packages/spectral/package.json | 8 +++++-- packages/spicy-rice/package.json | 8 +++++-- packages/spinnaker/package.json | 8 +++++-- packages/spirax/package.json | 8 +++++-- packages/squada-one/package.json | 8 +++++-- packages/sree-krushnadevaraya/package.json | 8 +++++-- packages/sriracha/package.json | 8 +++++-- packages/srisakdi/package.json | 8 +++++-- packages/staatliches/package.json | 8 +++++-- packages/stalemate/package.json | 8 +++++-- packages/stalinist-one/package.json | 8 +++++-- packages/stardos-stencil/package.json | 8 +++++-- packages/stint-ultra-condensed/package.json | 8 +++++-- packages/stint-ultra-expanded/package.json | 8 +++++-- packages/stoke/package.json | 8 +++++-- packages/strait/package.json | 8 +++++-- packages/stylish/package.json | 8 +++++-- packages/sue-ellen-francisco/package.json | 8 +++++-- packages/suez-one/package.json | 8 +++++-- packages/sulphur-point/package.json | 8 +++++-- packages/sumana/package.json | 8 +++++-- packages/sunflower/package.json | 8 +++++-- packages/sunshiney/package.json | 8 +++++-- packages/supermercado-one/package.json | 8 +++++-- packages/sura/package.json | 8 +++++-- packages/suranna/package.json | 8 +++++-- packages/suravaram/package.json | 8 +++++-- packages/suwannaphum/package.json | 8 +++++-- packages/swanky-and-moo-moo/package.json | 8 +++++-- packages/syncopate/package.json | 8 +++++-- packages/syne-italic/README.md | 5 +++-- packages/syne-italic/metadata.json | 14 ++++++++++++- packages/syne-italic/package.json | 4 ++-- packages/syne-mono/README.md | 5 +++-- packages/syne-mono/metadata.json | 14 ++++++++++++- packages/syne-mono/package.json | 4 ++-- packages/syne/README.md | 5 +++-- packages/syne/metadata.json | 14 ++++++++++++- packages/syne/package.json | 4 ++-- packages/tajawal/package.json | 8 +++++-- packages/tangerine/package.json | 8 +++++-- packages/taprom/package.json | 8 +++++-- packages/tauri/package.json | 8 +++++-- packages/taviraj/package.json | 8 +++++-- packages/teko/package.json | 8 +++++-- packages/telex/package.json | 8 +++++-- packages/tenali-ramakrishna/package.json | 8 +++++-- packages/tenor-sans/package.json | 8 +++++-- packages/text-me-one/package.json | 8 +++++-- packages/thasadith/package.json | 8 +++++-- packages/the-girl-next-door/package.json | 8 +++++-- packages/tienne/package.json | 8 +++++-- packages/tillana/package.json | 8 +++++-- packages/timmana/package.json | 8 +++++-- packages/tinos/package.json | 8 +++++-- packages/titan-one/package.json | 8 +++++-- packages/titillium-web/package.json | 8 +++++-- packages/tomorrow/package.json | 8 +++++-- packages/trade-winds/package.json | 8 +++++-- packages/trirong/package.json | 8 +++++-- packages/trocchi/package.json | 8 +++++-- packages/trochut/package.json | 8 +++++-- packages/trykker/package.json | 8 +++++-- packages/tulpen-one/package.json | 8 +++++-- packages/turret-road/package.json | 8 +++++-- packages/ubuntu-condensed/package.json | 8 +++++-- packages/ubuntu-mono/package.json | 8 +++++-- packages/ubuntu/package.json | 8 +++++-- packages/ultra/package.json | 8 +++++-- packages/uncial-antiqua/package.json | 8 +++++-- packages/underdog/package.json | 8 +++++-- packages/unica-one/package.json | 8 +++++-- packages/unifrakturcook/package.json | 8 +++++-- packages/unifrakturmaguntia/package.json | 8 +++++-- packages/unkempt/package.json | 8 +++++-- packages/unlock/package.json | 8 +++++-- packages/unna/package.json | 8 +++++-- packages/vampiro-one/package.json | 8 +++++-- packages/varela-round/package.json | 8 +++++-- packages/varela/package.json | 8 +++++-- packages/varta/package.json | 8 +++++-- packages/vast-shadow/package.json | 8 +++++-- packages/vazir/README.md | 5 +++-- packages/vazir/metadata.json | 19 ++++++++++++++++- packages/vazir/package.json | 4 ++-- packages/vesper-libre/package.json | 8 +++++-- packages/viaoda-libre/package.json | 8 +++++-- packages/vibes/package.json | 8 +++++-- packages/vibur/package.json | 8 +++++-- packages/victor-mono/README.md | 5 +++-- packages/victor-mono/metadata.json | 14 ++++++++++++- packages/victor-mono/package.json | 4 ++-- packages/vidaloka/package.json | 8 +++++-- packages/viga/package.json | 8 +++++-- packages/voces/package.json | 8 +++++-- packages/volkhov/package.json | 8 +++++-- packages/vollkorn-sc/package.json | 8 +++++-- packages/vollkorn/package.json | 8 +++++-- packages/voltaire/package.json | 8 +++++-- packages/vt323/package.json | 8 +++++-- packages/waiting-for-the-sunrise/package.json | 8 +++++-- packages/wallpoet/package.json | 8 +++++-- packages/walter-turncoat/package.json | 8 +++++-- packages/warnes/package.json | 8 +++++-- packages/wellfleet/package.json | 8 +++++-- packages/wendy-one/package.json | 8 +++++-- packages/wire-one/package.json | 8 +++++-- packages/work-sans/package.json | 8 +++++-- packages/yakuhanjp/README.md | 5 +++-- packages/yakuhanjp/metadata.json | 14 ++++++++++++- packages/yakuhanjp/package.json | 4 ++-- packages/yakuhanjps/README.md | 5 +++-- packages/yakuhanjps/metadata.json | 14 ++++++++++++- packages/yakuhanjps/package.json | 4 ++-- packages/yakuhanmp/README.md | 5 +++-- packages/yakuhanmp/metadata.json | 14 ++++++++++++- packages/yakuhanmp/package.json | 4 ++-- packages/yakuhanmps/README.md | 5 +++-- packages/yakuhanmps/metadata.json | 14 ++++++++++++- packages/yakuhanmps/package.json | 4 ++-- packages/yakuhanrp/README.md | 5 +++-- packages/yakuhanrp/metadata.json | 14 ++++++++++++- packages/yakuhanrp/package.json | 4 ++-- packages/yakuhanrps/README.md | 5 +++-- packages/yakuhanrps/metadata.json | 14 ++++++++++++- packages/yakuhanrps/package.json | 4 ++-- packages/yanone-kaffeesatz/package.json | 8 +++++-- packages/yantramanav/package.json | 8 +++++-- packages/yatra-one/package.json | 8 +++++-- packages/yellowtail/package.json | 8 +++++-- packages/yeon-sung/package.json | 8 +++++-- packages/yeseva-one/package.json | 8 +++++-- packages/yesteryear/package.json | 8 +++++-- packages/yrsa/package.json | 8 +++++-- packages/zcool-kuaile/package.json | 8 +++++-- packages/zcool-qingke-huangyou/package.json | 8 +++++-- packages/zcool-xiaowei/package.json | 8 +++++-- packages/zeyada/package.json | 8 +++++-- packages/zhi-mang-xing/package.json | 8 +++++-- packages/zilla-slab-highlight/package.json | 8 +++++-- packages/zilla-slab/package.json | 8 +++++-- 1105 files changed, 6642 insertions(+), 2174 deletions(-) diff --git a/packages/abeezee/package.json b/packages/abeezee/package.json index f2a6d60b8ab..67922ae7848 100644 --- a/packages/abeezee/package.json +++ b/packages/abeezee/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/abeezee", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/abeezee#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/abeezee" + } } diff --git a/packages/abel/package.json b/packages/abel/package.json index 4576823a30c..48a7024ef4d 100644 --- a/packages/abel/package.json +++ b/packages/abel/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/abel", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/abel#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/abel" + } } diff --git a/packages/abhaya-libre/package.json b/packages/abhaya-libre/package.json index ef69d35cd7d..457749df75c 100644 --- a/packages/abhaya-libre/package.json +++ b/packages/abhaya-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/abhaya-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/abhaya-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/abhaya-libre" + } } diff --git a/packages/abril-fatface/package.json b/packages/abril-fatface/package.json index d7a54b15a49..189830d5cbb 100644 --- a/packages/abril-fatface/package.json +++ b/packages/abril-fatface/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/abril-fatface", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/abril-fatface#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/abril-fatface" + } } diff --git a/packages/aclonica/package.json b/packages/aclonica/package.json index 05eacba88fe..43112aca281 100644 --- a/packages/aclonica/package.json +++ b/packages/aclonica/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/aclonica", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/aclonica#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/aclonica" + } } diff --git a/packages/acme/package.json b/packages/acme/package.json index a3ed045d785..c0c8652f1a9 100644 --- a/packages/acme/package.json +++ b/packages/acme/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/acme", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/acme#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/acme" + } } diff --git a/packages/actor/package.json b/packages/actor/package.json index 064fe3b9bf4..66003b95740 100644 --- a/packages/actor/package.json +++ b/packages/actor/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/actor", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/actor#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/actor" + } } diff --git a/packages/adamina/package.json b/packages/adamina/package.json index ce0d45ae1ee..5aa38a29c5f 100644 --- a/packages/adamina/package.json +++ b/packages/adamina/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/adamina", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/adamina#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/adamina" + } } diff --git a/packages/advent-pro/package.json b/packages/advent-pro/package.json index 162ea6a6f24..2b9e23cf9b6 100644 --- a/packages/advent-pro/package.json +++ b/packages/advent-pro/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/advent-pro", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/advent-pro#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/advent-pro" + } } diff --git a/packages/aguafina-script/package.json b/packages/aguafina-script/package.json index 18f86b4b05f..c4bda1d61f3 100644 --- a/packages/aguafina-script/package.json +++ b/packages/aguafina-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/aguafina-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/aguafina-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/aguafina-script" + } } diff --git a/packages/akronim/package.json b/packages/akronim/package.json index 1f435cb42d3..adb9aff541a 100644 --- a/packages/akronim/package.json +++ b/packages/akronim/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/akronim", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/akronim#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/akronim" + } } diff --git a/packages/aladin/package.json b/packages/aladin/package.json index 11dd8050ce3..8e86df8cf40 100644 --- a/packages/aladin/package.json +++ b/packages/aladin/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/aladin", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/aladin#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/aladin" + } } diff --git a/packages/alata/package.json b/packages/alata/package.json index df856b176af..c6107286adb 100644 --- a/packages/alata/package.json +++ b/packages/alata/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alata", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alata#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alata" + } } diff --git a/packages/alatsi/package.json b/packages/alatsi/package.json index 6d855575797..d78bfc6915f 100644 --- a/packages/alatsi/package.json +++ b/packages/alatsi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alatsi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alatsi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alatsi" + } } diff --git a/packages/aldrich/package.json b/packages/aldrich/package.json index b5fe7c102f3..820460c6828 100644 --- a/packages/aldrich/package.json +++ b/packages/aldrich/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/aldrich", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/aldrich#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/aldrich" + } } diff --git a/packages/alef/package.json b/packages/alef/package.json index 2b0bf810b04..ac28a589c04 100644 --- a/packages/alef/package.json +++ b/packages/alef/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alef", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alef#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alef" + } } diff --git a/packages/alegreya-sans-sc/package.json b/packages/alegreya-sans-sc/package.json index e4f2dfd453f..90a84367443 100644 --- a/packages/alegreya-sans-sc/package.json +++ b/packages/alegreya-sans-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alegreya-sans-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alegreya-sans-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alegreya-sans-sc" + } } diff --git a/packages/alegreya-sans/package.json b/packages/alegreya-sans/package.json index 5631e823d8d..351382f3dbc 100644 --- a/packages/alegreya-sans/package.json +++ b/packages/alegreya-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alegreya-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alegreya-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alegreya-sans" + } } diff --git a/packages/alegreya-sc/package.json b/packages/alegreya-sc/package.json index 4cb1b7e86bd..c1b054e2649 100644 --- a/packages/alegreya-sc/package.json +++ b/packages/alegreya-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alegreya-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alegreya-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alegreya-sc" + } } diff --git a/packages/alegreya/package.json b/packages/alegreya/package.json index 93b6a2259c1..28c36ee78f6 100644 --- a/packages/alegreya/package.json +++ b/packages/alegreya/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alegreya", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alegreya#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alegreya" + } } diff --git a/packages/aleo/package.json b/packages/aleo/package.json index 3d8b5a38a19..d8eaf222a45 100644 --- a/packages/aleo/package.json +++ b/packages/aleo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/aleo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/aleo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/aleo" + } } diff --git a/packages/alex-brush/package.json b/packages/alex-brush/package.json index 211025298dc..7a75aed5549 100644 --- a/packages/alex-brush/package.json +++ b/packages/alex-brush/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alex-brush", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alex-brush#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alex-brush" + } } diff --git a/packages/alfa-slab-one/package.json b/packages/alfa-slab-one/package.json index c6fac9fdd81..b6b97dc56a3 100644 --- a/packages/alfa-slab-one/package.json +++ b/packages/alfa-slab-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alfa-slab-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alfa-slab-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alfa-slab-one" + } } diff --git a/packages/alice/package.json b/packages/alice/package.json index e2f5e2ac52a..b73774edd7e 100644 --- a/packages/alice/package.json +++ b/packages/alice/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alice", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alice#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alice" + } } diff --git a/packages/alike-angular/package.json b/packages/alike-angular/package.json index 81933e9d25e..d5a89088725 100644 --- a/packages/alike-angular/package.json +++ b/packages/alike-angular/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alike-angular", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alike-angular#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alike-angular" + } } diff --git a/packages/alike/package.json b/packages/alike/package.json index 87bdc0b8c06..e7ee2001201 100644 --- a/packages/alike/package.json +++ b/packages/alike/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/alike", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/alike#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/alike" + } } diff --git a/packages/allan/package.json b/packages/allan/package.json index 510a6d49112..0a73a6019ba 100644 --- a/packages/allan/package.json +++ b/packages/allan/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/allan", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/allan#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/allan" + } } diff --git a/packages/allerta-stencil/package.json b/packages/allerta-stencil/package.json index 3ced7b60094..fccd03125db 100644 --- a/packages/allerta-stencil/package.json +++ b/packages/allerta-stencil/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/allerta-stencil", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/allerta-stencil#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/allerta-stencil" + } } diff --git a/packages/allerta/package.json b/packages/allerta/package.json index e911b7e08c9..9471aa265db 100644 --- a/packages/allerta/package.json +++ b/packages/allerta/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/allerta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/allerta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/allerta" + } } diff --git a/packages/allura/package.json b/packages/allura/package.json index f53a8e5a67c..0bd5712ff00 100644 --- a/packages/allura/package.json +++ b/packages/allura/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/allura", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/allura#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/allura" + } } diff --git a/packages/almarai/package.json b/packages/almarai/package.json index 2a0a83cab8c..a95ed1fa0d5 100644 --- a/packages/almarai/package.json +++ b/packages/almarai/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/almarai", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/almarai#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/almarai" + } } diff --git a/packages/almendra-display/package.json b/packages/almendra-display/package.json index ea5beeddfb5..a7040d142f8 100644 --- a/packages/almendra-display/package.json +++ b/packages/almendra-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/almendra-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/almendra-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/almendra-display" + } } diff --git a/packages/almendra-sc/package.json b/packages/almendra-sc/package.json index 0e62cedd763..5c0877d98c4 100644 --- a/packages/almendra-sc/package.json +++ b/packages/almendra-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/almendra-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/almendra-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/almendra-sc" + } } diff --git a/packages/almendra/package.json b/packages/almendra/package.json index 1abfd3540bf..9c35ba3d452 100644 --- a/packages/almendra/package.json +++ b/packages/almendra/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/almendra", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/almendra#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/almendra" + } } diff --git a/packages/amarante/package.json b/packages/amarante/package.json index b845e6a2908..ac74841afc1 100644 --- a/packages/amarante/package.json +++ b/packages/amarante/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/amarante", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/amarante#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/amarante" + } } diff --git a/packages/amaranth/package.json b/packages/amaranth/package.json index 9bfc157f7ff..9eedbf4fe93 100644 --- a/packages/amaranth/package.json +++ b/packages/amaranth/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/amaranth", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/amaranth#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/amaranth" + } } diff --git a/packages/amatic-sc/package.json b/packages/amatic-sc/package.json index 88aa729eb74..fbed041d02e 100644 --- a/packages/amatic-sc/package.json +++ b/packages/amatic-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/amatic-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/amatic-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/amatic-sc" + } } diff --git a/packages/amethysta/package.json b/packages/amethysta/package.json index 6e76aafe58d..26d3d126e8e 100644 --- a/packages/amethysta/package.json +++ b/packages/amethysta/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/amethysta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/amethysta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/amethysta" + } } diff --git a/packages/amiko/package.json b/packages/amiko/package.json index dc8db516d4a..51568c1580f 100644 --- a/packages/amiko/package.json +++ b/packages/amiko/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/amiko", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/amiko#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/amiko" + } } diff --git a/packages/amiri/package.json b/packages/amiri/package.json index 5b077d11a6a..1c61a26a114 100644 --- a/packages/amiri/package.json +++ b/packages/amiri/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/amiri", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/amiri#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/amiri" + } } diff --git a/packages/amita/package.json b/packages/amita/package.json index 5093db12802..0e7491aba99 100644 --- a/packages/amita/package.json +++ b/packages/amita/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/amita", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/amita#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/amita" + } } diff --git a/packages/anaheim/package.json b/packages/anaheim/package.json index d297fe4e7f8..e0554f85013 100644 --- a/packages/anaheim/package.json +++ b/packages/anaheim/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/anaheim", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/anaheim#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/anaheim" + } } diff --git a/packages/andada/package.json b/packages/andada/package.json index 97ee06e99b1..c63f50e7069 100644 --- a/packages/andada/package.json +++ b/packages/andada/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/andada", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/andada#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/andada" + } } diff --git a/packages/andika/package.json b/packages/andika/package.json index cb9beb7f8c2..d44ab89bac8 100644 --- a/packages/andika/package.json +++ b/packages/andika/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/andika", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/andika#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/andika" + } } diff --git a/packages/angkor/package.json b/packages/angkor/package.json index 05f4aab77cc..a40c1c15a70 100644 --- a/packages/angkor/package.json +++ b/packages/angkor/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/angkor", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/angkor#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/angkor" + } } diff --git a/packages/annie-use-your-telescope/package.json b/packages/annie-use-your-telescope/package.json index 74d8b3f99fe..b2bfacb6974 100644 --- a/packages/annie-use-your-telescope/package.json +++ b/packages/annie-use-your-telescope/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/annie-use-your-telescope", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/annie-use-your-telescope#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/annie-use-your-telescope" + } } diff --git a/packages/anonymous-pro/package.json b/packages/anonymous-pro/package.json index 425c4832121..04bf4cdfa22 100644 --- a/packages/anonymous-pro/package.json +++ b/packages/anonymous-pro/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/anonymous-pro", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/anonymous-pro#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/anonymous-pro" + } } diff --git a/packages/antic-didone/package.json b/packages/antic-didone/package.json index 389112937ce..ddbac945e4e 100644 --- a/packages/antic-didone/package.json +++ b/packages/antic-didone/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/antic-didone", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/antic-didone#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/antic-didone" + } } diff --git a/packages/antic-slab/package.json b/packages/antic-slab/package.json index fb44c8e8365..2fc375a09aa 100644 --- a/packages/antic-slab/package.json +++ b/packages/antic-slab/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/antic-slab", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/antic-slab#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/antic-slab" + } } diff --git a/packages/antic/package.json b/packages/antic/package.json index fa1fefa98dd..61ea47aba33 100644 --- a/packages/antic/package.json +++ b/packages/antic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/antic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/antic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/antic" + } } diff --git a/packages/anton/package.json b/packages/anton/package.json index afc08e1cc27..eed1e8077fa 100644 --- a/packages/anton/package.json +++ b/packages/anton/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/anton", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/anton#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/anton" + } } diff --git a/packages/arapey/package.json b/packages/arapey/package.json index b9c4b522177..20654f9bcf0 100644 --- a/packages/arapey/package.json +++ b/packages/arapey/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/arapey", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/arapey#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/arapey" + } } diff --git a/packages/arbutus-slab/package.json b/packages/arbutus-slab/package.json index 1378e7bf41f..6eeed101b73 100644 --- a/packages/arbutus-slab/package.json +++ b/packages/arbutus-slab/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/arbutus-slab", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/arbutus-slab#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/arbutus-slab" + } } diff --git a/packages/arbutus/package.json b/packages/arbutus/package.json index 220e0b12976..2209a98182a 100644 --- a/packages/arbutus/package.json +++ b/packages/arbutus/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/arbutus", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/arbutus#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/arbutus" + } } diff --git a/packages/architects-daughter/package.json b/packages/architects-daughter/package.json index e431031c704..96b7136c123 100644 --- a/packages/architects-daughter/package.json +++ b/packages/architects-daughter/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/architects-daughter", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/architects-daughter#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/architects-daughter" + } } diff --git a/packages/archivo-black/package.json b/packages/archivo-black/package.json index 6d460f27416..1087ae98381 100644 --- a/packages/archivo-black/package.json +++ b/packages/archivo-black/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/archivo-black", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/archivo-black#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/archivo-black" + } } diff --git a/packages/archivo-narrow/package.json b/packages/archivo-narrow/package.json index 17425d14873..6303579250a 100644 --- a/packages/archivo-narrow/package.json +++ b/packages/archivo-narrow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/archivo-narrow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/archivo-narrow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/archivo-narrow" + } } diff --git a/packages/archivo/package.json b/packages/archivo/package.json index 9fdb98b6415..d2dd21165db 100644 --- a/packages/archivo/package.json +++ b/packages/archivo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/archivo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/archivo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/archivo" + } } diff --git a/packages/aref-ruqaa/package.json b/packages/aref-ruqaa/package.json index b936f9b9d9a..8a1bb68e1f1 100644 --- a/packages/aref-ruqaa/package.json +++ b/packages/aref-ruqaa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/aref-ruqaa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/aref-ruqaa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/aref-ruqaa" + } } diff --git a/packages/arima-madurai/package.json b/packages/arima-madurai/package.json index 79e09160794..f86c1eaffd6 100644 --- a/packages/arima-madurai/package.json +++ b/packages/arima-madurai/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/arima-madurai", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/arima-madurai#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/arima-madurai" + } } diff --git a/packages/arimo/package.json b/packages/arimo/package.json index e333402fccb..3e4fedb2203 100644 --- a/packages/arimo/package.json +++ b/packages/arimo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/arimo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/arimo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/arimo" + } } diff --git a/packages/arizonia/package.json b/packages/arizonia/package.json index 279ae1d6158..0653387b4e5 100644 --- a/packages/arizonia/package.json +++ b/packages/arizonia/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/arizonia", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/arizonia#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/arizonia" + } } diff --git a/packages/armata/package.json b/packages/armata/package.json index 33c7a5e1110..3beef662e88 100644 --- a/packages/armata/package.json +++ b/packages/armata/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/armata", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/armata#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/armata" + } } diff --git a/packages/arsenal/package.json b/packages/arsenal/package.json index 1fcff73fa1d..d20bfc04452 100644 --- a/packages/arsenal/package.json +++ b/packages/arsenal/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/arsenal", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/arsenal#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/arsenal" + } } diff --git a/packages/artifika/package.json b/packages/artifika/package.json index 80de3852858..737a2b423c1 100644 --- a/packages/artifika/package.json +++ b/packages/artifika/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/artifika", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/artifika#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/artifika" + } } diff --git a/packages/arvo/package.json b/packages/arvo/package.json index bd3881dc3a0..294759915ef 100644 --- a/packages/arvo/package.json +++ b/packages/arvo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/arvo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/arvo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/arvo" + } } diff --git a/packages/arya/package.json b/packages/arya/package.json index 074cc86970f..f8d576f8acc 100644 --- a/packages/arya/package.json +++ b/packages/arya/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/arya", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/arya#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/arya" + } } diff --git a/packages/asap-condensed/package.json b/packages/asap-condensed/package.json index b2a91e4dec3..02e5ad40916 100644 --- a/packages/asap-condensed/package.json +++ b/packages/asap-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/asap-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/asap-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/asap-condensed" + } } diff --git a/packages/asap/package.json b/packages/asap/package.json index 3b9d2f47955..1ed26cbd110 100644 --- a/packages/asap/package.json +++ b/packages/asap/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/asap", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/asap#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/asap" + } } diff --git a/packages/asar/package.json b/packages/asar/package.json index 66fa71dad5e..33b01443122 100644 --- a/packages/asar/package.json +++ b/packages/asar/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/asar", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/asar#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/asar" + } } diff --git a/packages/asset/package.json b/packages/asset/package.json index 054a253726e..922673b20c9 100644 --- a/packages/asset/package.json +++ b/packages/asset/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/asset", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/asset#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/asset" + } } diff --git a/packages/assistant/package.json b/packages/assistant/package.json index 970e68e1b92..b80a1fabb0d 100644 --- a/packages/assistant/package.json +++ b/packages/assistant/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/assistant", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/assistant#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/assistant" + } } diff --git a/packages/astloch/package.json b/packages/astloch/package.json index 254c75b36d8..9f59c995e47 100644 --- a/packages/astloch/package.json +++ b/packages/astloch/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/astloch", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/astloch#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/astloch" + } } diff --git a/packages/asul/package.json b/packages/asul/package.json index 6fadfc29033..dc5a37d3908 100644 --- a/packages/asul/package.json +++ b/packages/asul/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/asul", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/asul#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/asul" + } } diff --git a/packages/athiti/package.json b/packages/athiti/package.json index 1f0292d0f0d..ebddf7dcfbb 100644 --- a/packages/athiti/package.json +++ b/packages/athiti/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/athiti", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/athiti#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/athiti" + } } diff --git a/packages/atma/package.json b/packages/atma/package.json index 5d6cbaa0786..5faa988c162 100644 --- a/packages/atma/package.json +++ b/packages/atma/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/atma", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/atma#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/atma" + } } diff --git a/packages/atomic-age/package.json b/packages/atomic-age/package.json index 0c6bf4d77ad..dd5bb1861cb 100644 --- a/packages/atomic-age/package.json +++ b/packages/atomic-age/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/atomic-age", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/atomic-age#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/atomic-age" + } } diff --git a/packages/aubrey/package.json b/packages/aubrey/package.json index c2fb2c9d9b3..162fc25fc3b 100644 --- a/packages/aubrey/package.json +++ b/packages/aubrey/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/aubrey", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/aubrey#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/aubrey" + } } diff --git a/packages/audiowide/package.json b/packages/audiowide/package.json index 27fecc98604..20177ee37dc 100644 --- a/packages/audiowide/package.json +++ b/packages/audiowide/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/audiowide", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/audiowide#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/audiowide" + } } diff --git a/packages/autour-one/package.json b/packages/autour-one/package.json index 84bb8804ab7..db29205740b 100644 --- a/packages/autour-one/package.json +++ b/packages/autour-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/autour-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/autour-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/autour-one" + } } diff --git a/packages/average-sans/package.json b/packages/average-sans/package.json index 8fe7f578623..dd632225114 100644 --- a/packages/average-sans/package.json +++ b/packages/average-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/average-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/average-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/average-sans" + } } diff --git a/packages/average/package.json b/packages/average/package.json index 5dba23be6d4..6b3fd41df4d 100644 --- a/packages/average/package.json +++ b/packages/average/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/average", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/average#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/average" + } } diff --git a/packages/averia-gruesa-libre/package.json b/packages/averia-gruesa-libre/package.json index d023b8c7455..54cb395b725 100644 --- a/packages/averia-gruesa-libre/package.json +++ b/packages/averia-gruesa-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/averia-gruesa-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/averia-gruesa-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/averia-gruesa-libre" + } } diff --git a/packages/averia-libre/package.json b/packages/averia-libre/package.json index f6420cf0cd8..f57f1595de4 100644 --- a/packages/averia-libre/package.json +++ b/packages/averia-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/averia-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/averia-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/averia-libre" + } } diff --git a/packages/averia-sans-libre/package.json b/packages/averia-sans-libre/package.json index f7a8520fdbc..5b96ddce2ee 100644 --- a/packages/averia-sans-libre/package.json +++ b/packages/averia-sans-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/averia-sans-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/averia-sans-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/averia-sans-libre" + } } diff --git a/packages/averia-serif-libre/package.json b/packages/averia-serif-libre/package.json index d0a99952571..ab5a6824210 100644 --- a/packages/averia-serif-libre/package.json +++ b/packages/averia-serif-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/averia-serif-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/averia-serif-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/averia-serif-libre" + } } diff --git a/packages/b612-mono/package.json b/packages/b612-mono/package.json index b4bde854163..2e9aa88c98b 100644 --- a/packages/b612-mono/package.json +++ b/packages/b612-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/b612-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/b612-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/b612-mono" + } } diff --git a/packages/b612/package.json b/packages/b612/package.json index f31f29d856d..a6dda9ddf34 100644 --- a/packages/b612/package.json +++ b/packages/b612/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/b612", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/b612#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/b612" + } } diff --git a/packages/bad-script/package.json b/packages/bad-script/package.json index d27b1966dfd..558a4bbde8a 100644 --- a/packages/bad-script/package.json +++ b/packages/bad-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bad-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bad-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bad-script" + } } diff --git a/packages/bahiana/package.json b/packages/bahiana/package.json index 074c6100f0f..8eaee384f9c 100644 --- a/packages/bahiana/package.json +++ b/packages/bahiana/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bahiana", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bahiana#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bahiana" + } } diff --git a/packages/bahianita/package.json b/packages/bahianita/package.json index e716105f210..8189ad8dfc6 100644 --- a/packages/bahianita/package.json +++ b/packages/bahianita/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bahianita", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bahianita#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bahianita" + } } diff --git a/packages/bai-jamjuree/package.json b/packages/bai-jamjuree/package.json index bae74fb0733..872fafd4012 100644 --- a/packages/bai-jamjuree/package.json +++ b/packages/bai-jamjuree/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bai-jamjuree", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bai-jamjuree#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bai-jamjuree" + } } diff --git a/packages/baloo-2/package.json b/packages/baloo-2/package.json index 0d77cb098a5..83d4a05f8b6 100644 --- a/packages/baloo-2/package.json +++ b/packages/baloo-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baloo-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baloo-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baloo-2" + } } diff --git a/packages/baloo-bhai-2/package.json b/packages/baloo-bhai-2/package.json index 9c809f6ddc9..90224a6a6f7 100644 --- a/packages/baloo-bhai-2/package.json +++ b/packages/baloo-bhai-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baloo-bhai-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baloo-bhai-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baloo-bhai-2" + } } diff --git a/packages/baloo-bhaina-2/package.json b/packages/baloo-bhaina-2/package.json index 35536563409..3d34bf4c3db 100644 --- a/packages/baloo-bhaina-2/package.json +++ b/packages/baloo-bhaina-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baloo-bhaina-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baloo-bhaina-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baloo-bhaina-2" + } } diff --git a/packages/baloo-chettan-2/package.json b/packages/baloo-chettan-2/package.json index d7b54cf08ff..7a859b58ae0 100644 --- a/packages/baloo-chettan-2/package.json +++ b/packages/baloo-chettan-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baloo-chettan-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baloo-chettan-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baloo-chettan-2" + } } diff --git a/packages/baloo-da-2/package.json b/packages/baloo-da-2/package.json index 838481a40fe..4e4899a35ee 100644 --- a/packages/baloo-da-2/package.json +++ b/packages/baloo-da-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baloo-da-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baloo-da-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baloo-da-2" + } } diff --git a/packages/baloo-paaji-2/package.json b/packages/baloo-paaji-2/package.json index 12cb2b56040..b0e3b65fc0d 100644 --- a/packages/baloo-paaji-2/package.json +++ b/packages/baloo-paaji-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baloo-paaji-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baloo-paaji-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baloo-paaji-2" + } } diff --git a/packages/baloo-tamma-2/package.json b/packages/baloo-tamma-2/package.json index b860bea4805..02208aa4bee 100644 --- a/packages/baloo-tamma-2/package.json +++ b/packages/baloo-tamma-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baloo-tamma-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baloo-tamma-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baloo-tamma-2" + } } diff --git a/packages/baloo-tammudu-2/package.json b/packages/baloo-tammudu-2/package.json index 361e3ec0089..29b7fa95a1d 100644 --- a/packages/baloo-tammudu-2/package.json +++ b/packages/baloo-tammudu-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baloo-tammudu-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baloo-tammudu-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baloo-tammudu-2" + } } diff --git a/packages/baloo-thambi-2/package.json b/packages/baloo-thambi-2/package.json index 52719957534..833244fee69 100644 --- a/packages/baloo-thambi-2/package.json +++ b/packages/baloo-thambi-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baloo-thambi-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baloo-thambi-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baloo-thambi-2" + } } diff --git a/packages/balsamiq-sans/package.json b/packages/balsamiq-sans/package.json index 56f37a3495d..8711e76404d 100644 --- a/packages/balsamiq-sans/package.json +++ b/packages/balsamiq-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/balsamiq-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/balsamiq-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/balsamiq-sans" + } } diff --git a/packages/balthazar/package.json b/packages/balthazar/package.json index bec8c681f99..1321a3cd9a7 100644 --- a/packages/balthazar/package.json +++ b/packages/balthazar/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/balthazar", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/balthazar#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/balthazar" + } } diff --git a/packages/bangers/package.json b/packages/bangers/package.json index 2681817e9b5..88a06d00222 100644 --- a/packages/bangers/package.json +++ b/packages/bangers/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bangers", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bangers#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bangers" + } } diff --git a/packages/barlow-condensed/package.json b/packages/barlow-condensed/package.json index ba62ce972fa..844890ca8d8 100644 --- a/packages/barlow-condensed/package.json +++ b/packages/barlow-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/barlow-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/barlow-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/barlow-condensed" + } } diff --git a/packages/barlow-semi-condensed/package.json b/packages/barlow-semi-condensed/package.json index fef1aa4fcdf..87109bac25c 100644 --- a/packages/barlow-semi-condensed/package.json +++ b/packages/barlow-semi-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/barlow-semi-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/barlow-semi-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/barlow-semi-condensed" + } } diff --git a/packages/barlow/package.json b/packages/barlow/package.json index 3f246d36ab4..65fc8d0c88f 100644 --- a/packages/barlow/package.json +++ b/packages/barlow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/barlow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/barlow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/barlow" + } } diff --git a/packages/barriecito/package.json b/packages/barriecito/package.json index 7ffac460353..0c7b1011f4e 100644 --- a/packages/barriecito/package.json +++ b/packages/barriecito/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/barriecito", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/barriecito#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/barriecito" + } } diff --git a/packages/barrio/package.json b/packages/barrio/package.json index 9614b9790fc..452db0a397e 100644 --- a/packages/barrio/package.json +++ b/packages/barrio/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/barrio", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/barrio#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/barrio" + } } diff --git a/packages/basic/package.json b/packages/basic/package.json index 69e5c0a2095..baede2a828d 100644 --- a/packages/basic/package.json +++ b/packages/basic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/basic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/basic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/basic" + } } diff --git a/packages/baskervville/package.json b/packages/baskervville/package.json index 3e51eb00b32..f44c619df39 100644 --- a/packages/baskervville/package.json +++ b/packages/baskervville/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baskervville", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baskervville#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baskervville" + } } diff --git a/packages/battambang/package.json b/packages/battambang/package.json index d3f1bc8c3d5..902d8122c07 100644 --- a/packages/battambang/package.json +++ b/packages/battambang/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/battambang", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/battambang#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/battambang" + } } diff --git a/packages/baumans/package.json b/packages/baumans/package.json index b41a213f40a..921009a1bf0 100644 --- a/packages/baumans/package.json +++ b/packages/baumans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/baumans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/baumans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/baumans" + } } diff --git a/packages/bayon/package.json b/packages/bayon/package.json index f78b8e9a5c6..fd6ed33be79 100644 --- a/packages/bayon/package.json +++ b/packages/bayon/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bayon", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bayon#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bayon" + } } diff --git a/packages/be-vietnam/package.json b/packages/be-vietnam/package.json index 169abc2b6ea..15563cbf509 100644 --- a/packages/be-vietnam/package.json +++ b/packages/be-vietnam/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/be-vietnam", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/be-vietnam#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/be-vietnam" + } } diff --git a/packages/bebas-neue/package.json b/packages/bebas-neue/package.json index 0f99de7ef98..5580988d443 100644 --- a/packages/bebas-neue/package.json +++ b/packages/bebas-neue/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bebas-neue", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bebas-neue#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bebas-neue" + } } diff --git a/packages/belgrano/package.json b/packages/belgrano/package.json index ce0b6838af9..d17330af379 100644 --- a/packages/belgrano/package.json +++ b/packages/belgrano/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/belgrano", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/belgrano#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/belgrano" + } } diff --git a/packages/bellefair/package.json b/packages/bellefair/package.json index 990c46a0088..e30af081cfa 100644 --- a/packages/bellefair/package.json +++ b/packages/bellefair/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bellefair", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bellefair#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bellefair" + } } diff --git a/packages/belleza/package.json b/packages/belleza/package.json index 75150b4bbb5..31aec3b64f2 100644 --- a/packages/belleza/package.json +++ b/packages/belleza/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/belleza", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/belleza#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/belleza" + } } diff --git a/packages/bellota-text/package.json b/packages/bellota-text/package.json index 27dc5b8e32c..a6a880141c1 100644 --- a/packages/bellota-text/package.json +++ b/packages/bellota-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bellota-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bellota-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bellota-text" + } } diff --git a/packages/bellota/package.json b/packages/bellota/package.json index e757531b15a..cc18f1c0b74 100644 --- a/packages/bellota/package.json +++ b/packages/bellota/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bellota", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bellota#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bellota" + } } diff --git a/packages/benchnine/package.json b/packages/benchnine/package.json index fac0718afbe..e5feb0d7b06 100644 --- a/packages/benchnine/package.json +++ b/packages/benchnine/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/benchnine", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/benchnine#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/benchnine" + } } diff --git a/packages/bentham/package.json b/packages/bentham/package.json index fe63bf788c8..cda01f3249f 100644 --- a/packages/bentham/package.json +++ b/packages/bentham/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bentham", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bentham#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bentham" + } } diff --git a/packages/berkshire-swash/package.json b/packages/berkshire-swash/package.json index 673a1170878..0343f815d9b 100644 --- a/packages/berkshire-swash/package.json +++ b/packages/berkshire-swash/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/berkshire-swash", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/berkshire-swash#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/berkshire-swash" + } } diff --git a/packages/beth-ellen/package.json b/packages/beth-ellen/package.json index f06c7383885..fd0e0216951 100644 --- a/packages/beth-ellen/package.json +++ b/packages/beth-ellen/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/beth-ellen", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/beth-ellen#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/beth-ellen" + } } diff --git a/packages/bevan/package.json b/packages/bevan/package.json index ab4584f3f17..16f8f302138 100644 --- a/packages/bevan/package.json +++ b/packages/bevan/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bevan", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bevan#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bevan" + } } diff --git a/packages/big-shoulders-display/package.json b/packages/big-shoulders-display/package.json index 3f9325193a8..ad151b6a82f 100644 --- a/packages/big-shoulders-display/package.json +++ b/packages/big-shoulders-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/big-shoulders-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/big-shoulders-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/big-shoulders-display" + } } diff --git a/packages/big-shoulders-text/package.json b/packages/big-shoulders-text/package.json index ce53232aca4..35fdfa5069b 100644 --- a/packages/big-shoulders-text/package.json +++ b/packages/big-shoulders-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/big-shoulders-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/big-shoulders-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/big-shoulders-text" + } } diff --git a/packages/bigelow-rules/package.json b/packages/bigelow-rules/package.json index 94fb43ac07e..a2adf8dae2e 100644 --- a/packages/bigelow-rules/package.json +++ b/packages/bigelow-rules/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bigelow-rules", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bigelow-rules#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bigelow-rules" + } } diff --git a/packages/bigshot-one/package.json b/packages/bigshot-one/package.json index 280ce41d6f2..a55a9e4357b 100644 --- a/packages/bigshot-one/package.json +++ b/packages/bigshot-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bigshot-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bigshot-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bigshot-one" + } } diff --git a/packages/bilbo-swash-caps/package.json b/packages/bilbo-swash-caps/package.json index 2b4fdf8d0e2..9e0f0e75e28 100644 --- a/packages/bilbo-swash-caps/package.json +++ b/packages/bilbo-swash-caps/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bilbo-swash-caps", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bilbo-swash-caps#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bilbo-swash-caps" + } } diff --git a/packages/bilbo/package.json b/packages/bilbo/package.json index 502338b0943..58756de65d1 100644 --- a/packages/bilbo/package.json +++ b/packages/bilbo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bilbo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bilbo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bilbo" + } } diff --git a/packages/biorhyme-expanded/package.json b/packages/biorhyme-expanded/package.json index 13bd29e4db6..b1526381a65 100644 --- a/packages/biorhyme-expanded/package.json +++ b/packages/biorhyme-expanded/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/biorhyme-expanded", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/biorhyme-expanded#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/biorhyme-expanded" + } } diff --git a/packages/biorhyme/package.json b/packages/biorhyme/package.json index ea0c67af190..5508ad32480 100644 --- a/packages/biorhyme/package.json +++ b/packages/biorhyme/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/biorhyme", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/biorhyme#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/biorhyme" + } } diff --git a/packages/biryani/package.json b/packages/biryani/package.json index 63412063a52..586bf12da2d 100644 --- a/packages/biryani/package.json +++ b/packages/biryani/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/biryani", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/biryani#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/biryani" + } } diff --git a/packages/bitter/package.json b/packages/bitter/package.json index eef4959a543..309d55f37a1 100644 --- a/packages/bitter/package.json +++ b/packages/bitter/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bitter", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bitter#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bitter" + } } diff --git a/packages/black-and-white-picture/package.json b/packages/black-and-white-picture/package.json index 1ee57d3e089..a08c9fe83fb 100644 --- a/packages/black-and-white-picture/package.json +++ b/packages/black-and-white-picture/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/black-and-white-picture", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/black-and-white-picture#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/black-and-white-picture" + } } diff --git a/packages/black-han-sans/package.json b/packages/black-han-sans/package.json index 1f39aa842b6..c2e4838ba1d 100644 --- a/packages/black-han-sans/package.json +++ b/packages/black-han-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/black-han-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/black-han-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/black-han-sans" + } } diff --git a/packages/black-ops-one/package.json b/packages/black-ops-one/package.json index 3f200cddae3..a07d973a7d7 100644 --- a/packages/black-ops-one/package.json +++ b/packages/black-ops-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/black-ops-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/black-ops-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/black-ops-one" + } } diff --git a/packages/blackout-midnight/README.md b/packages/blackout-midnight/README.md index 7f9bcfb9b35..a8e4cce0cc7 100644 --- a/packages/blackout-midnight/README.md +++ b/packages/blackout-midnight/README.md @@ -1,4 +1,5 @@ # Fontsource Blackout Midnight + [![npm version](https://badge.fury.io/js/fontsource-blackout-midnight.svg)](https://www.npmjs.com/package/fontsource-blackout-midnight) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-blackout-midnight)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-blackout-midnight)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Blackout Midnight” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/blackout) and [License](https://git Font version (provided by source): `v1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/blackout-midnight/metadata.json b/packages/blackout-midnight/metadata.json index 2f3fd89b5ab..967c5fe8932 100644 --- a/packages/blackout-midnight/metadata.json +++ b/packages/blackout-midnight/metadata.json @@ -1 +1,13 @@ -{"fontId":"blackout-midnight","fontName":"Blackout Midnight","subsets":["latin"],"weights":["400"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v1","source":"https://github.com/theleagueof/blackout","license":"https://github.com/theleagueof/blackout/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "blackout-midnight", + "fontName": "Blackout Midnight", + "subsets": ["latin"], + "weights": ["400"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v1", + "source": "https://github.com/theleagueof/blackout", + "license": "https://github.com/theleagueof/blackout/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/blackout-midnight/package.json b/packages/blackout-midnight/package.json index e22f78fcf6b..837d958346c 100644 --- a/packages/blackout-midnight/package.json +++ b/packages/blackout-midnight/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/blackout-midnight#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/blackout-midnight" } } diff --git a/packages/blackout-sunrise/README.md b/packages/blackout-sunrise/README.md index 542fe549e1c..a36e312409c 100644 --- a/packages/blackout-sunrise/README.md +++ b/packages/blackout-sunrise/README.md @@ -1,4 +1,5 @@ # Fontsource Blackout Sunrise + [![npm version](https://badge.fury.io/js/fontsource-blackout-sunrise.svg)](https://www.npmjs.com/package/fontsource-blackout-sunrise) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-blackout-sunrise)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-blackout-sunrise)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Blackout Sunrise” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/blackout) and [License](https://git Font version (provided by source): `v1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/blackout-sunrise/metadata.json b/packages/blackout-sunrise/metadata.json index c76228834e9..b1026023d5f 100644 --- a/packages/blackout-sunrise/metadata.json +++ b/packages/blackout-sunrise/metadata.json @@ -1 +1,13 @@ -{"fontId":"blackout-sunrise","fontName":"Blackout Sunrise","subsets":["latin"],"weights":["400"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v1","source":"https://github.com/theleagueof/blackout","license":"https://github.com/theleagueof/blackout/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "blackout-sunrise", + "fontName": "Blackout Sunrise", + "subsets": ["latin"], + "weights": ["400"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v1", + "source": "https://github.com/theleagueof/blackout", + "license": "https://github.com/theleagueof/blackout/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/blackout-sunrise/package.json b/packages/blackout-sunrise/package.json index f1c6976ef36..33a885124d8 100644 --- a/packages/blackout-sunrise/package.json +++ b/packages/blackout-sunrise/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/blackout-sunrise#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/blackout-sunrise" } } diff --git a/packages/blackout-two-am/README.md b/packages/blackout-two-am/README.md index f27382c9680..00c4c08c1dd 100644 --- a/packages/blackout-two-am/README.md +++ b/packages/blackout-two-am/README.md @@ -1,4 +1,5 @@ # Fontsource Blackout Two AM + [![npm version](https://badge.fury.io/js/fontsource-blackout-two-am.svg)](https://www.npmjs.com/package/fontsource-blackout-two-am) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-blackout-two-am)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-blackout-two-am)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Blackout Two AM” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/blackout) and [License](https://git Font version (provided by source): `v1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/blackout-two-am/metadata.json b/packages/blackout-two-am/metadata.json index 6b4a47b44f2..d8b728eb795 100644 --- a/packages/blackout-two-am/metadata.json +++ b/packages/blackout-two-am/metadata.json @@ -1 +1,13 @@ -{"fontId":"blackout-two-am","fontName":"Blackout Two AM","subsets":["latin"],"weights":["400"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v1","source":"https://github.com/theleagueof/blackout","license":"https://github.com/theleagueof/blackout/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "blackout-two-am", + "fontName": "Blackout Two AM", + "subsets": ["latin"], + "weights": ["400"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v1", + "source": "https://github.com/theleagueof/blackout", + "license": "https://github.com/theleagueof/blackout/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/blackout-two-am/package.json b/packages/blackout-two-am/package.json index c7b5d31f261..b928ca653df 100644 --- a/packages/blackout-two-am/package.json +++ b/packages/blackout-two-am/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/blackout-two-am#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/blackout-two-am" } } diff --git a/packages/blinker/package.json b/packages/blinker/package.json index e4e23273151..158b7ff9f39 100644 --- a/packages/blinker/package.json +++ b/packages/blinker/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/blinker", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/blinker#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/blinker" + } } diff --git a/packages/bokor/package.json b/packages/bokor/package.json index ae100c994f3..43a489ef1bb 100644 --- a/packages/bokor/package.json +++ b/packages/bokor/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bokor", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bokor#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bokor" + } } diff --git a/packages/bonbon/package.json b/packages/bonbon/package.json index cc3806b8058..c2dc5e877de 100644 --- a/packages/bonbon/package.json +++ b/packages/bonbon/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bonbon", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bonbon#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bonbon" + } } diff --git a/packages/boogaloo/package.json b/packages/boogaloo/package.json index 4f56f2ce985..7a036accf74 100644 --- a/packages/boogaloo/package.json +++ b/packages/boogaloo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/boogaloo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/boogaloo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/boogaloo" + } } diff --git a/packages/bowlby-one-sc/package.json b/packages/bowlby-one-sc/package.json index 70f69b53282..81012baf7e2 100644 --- a/packages/bowlby-one-sc/package.json +++ b/packages/bowlby-one-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bowlby-one-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bowlby-one-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bowlby-one-sc" + } } diff --git a/packages/bowlby-one/package.json b/packages/bowlby-one/package.json index 684a2d12360..41e685459cb 100644 --- a/packages/bowlby-one/package.json +++ b/packages/bowlby-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bowlby-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bowlby-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bowlby-one" + } } diff --git a/packages/brawler/package.json b/packages/brawler/package.json index ccd6496805a..ebf96955351 100644 --- a/packages/brawler/package.json +++ b/packages/brawler/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/brawler", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/brawler#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/brawler" + } } diff --git a/packages/bree-serif/package.json b/packages/bree-serif/package.json index 86e3ce8db40..32351d3dd2d 100644 --- a/packages/bree-serif/package.json +++ b/packages/bree-serif/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bree-serif", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bree-serif#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bree-serif" + } } diff --git a/packages/bubblegum-sans/package.json b/packages/bubblegum-sans/package.json index f48a0b6b4f6..d17b49530d5 100644 --- a/packages/bubblegum-sans/package.json +++ b/packages/bubblegum-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bubblegum-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bubblegum-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bubblegum-sans" + } } diff --git a/packages/bubbler-one/package.json b/packages/bubbler-one/package.json index 73dfbe4abb3..2ca2e136d63 100644 --- a/packages/bubbler-one/package.json +++ b/packages/bubbler-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bubbler-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bubbler-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bubbler-one" + } } diff --git a/packages/buda/package.json b/packages/buda/package.json index 506bef285ac..8b572959b5a 100644 --- a/packages/buda/package.json +++ b/packages/buda/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/buda", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/buda#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/buda" + } } diff --git a/packages/buenard/package.json b/packages/buenard/package.json index 331ac129941..de3c140b98f 100644 --- a/packages/buenard/package.json +++ b/packages/buenard/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/buenard", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/buenard#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/buenard" + } } diff --git a/packages/bungee-hairline/package.json b/packages/bungee-hairline/package.json index 02386824794..23bffb705f1 100644 --- a/packages/bungee-hairline/package.json +++ b/packages/bungee-hairline/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bungee-hairline", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bungee-hairline#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bungee-hairline" + } } diff --git a/packages/bungee-inline/package.json b/packages/bungee-inline/package.json index 10dd411348b..1d3e8a2dc87 100644 --- a/packages/bungee-inline/package.json +++ b/packages/bungee-inline/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bungee-inline", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bungee-inline#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bungee-inline" + } } diff --git a/packages/bungee-outline/package.json b/packages/bungee-outline/package.json index 7b3fffde44e..5c7f92a4ec7 100644 --- a/packages/bungee-outline/package.json +++ b/packages/bungee-outline/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bungee-outline", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bungee-outline#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bungee-outline" + } } diff --git a/packages/bungee-shade/package.json b/packages/bungee-shade/package.json index c882c0959b4..04c3e695446 100644 --- a/packages/bungee-shade/package.json +++ b/packages/bungee-shade/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bungee-shade", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bungee-shade#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bungee-shade" + } } diff --git a/packages/bungee/package.json b/packages/bungee/package.json index 10b06ec1794..740e2a30034 100644 --- a/packages/bungee/package.json +++ b/packages/bungee/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/bungee", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/bungee#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/bungee" + } } diff --git a/packages/butcherman/package.json b/packages/butcherman/package.json index ad6d3d47ce6..4a1a79d91d9 100644 --- a/packages/butcherman/package.json +++ b/packages/butcherman/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/butcherman", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/butcherman#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/butcherman" + } } diff --git a/packages/butterfly-kids/package.json b/packages/butterfly-kids/package.json index 49b81cad607..cc076bdcbb9 100644 --- a/packages/butterfly-kids/package.json +++ b/packages/butterfly-kids/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/butterfly-kids", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/butterfly-kids#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/butterfly-kids" + } } diff --git a/packages/cabin-condensed/package.json b/packages/cabin-condensed/package.json index d6340ef3301..32b04bbf58e 100644 --- a/packages/cabin-condensed/package.json +++ b/packages/cabin-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cabin-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cabin-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cabin-condensed" + } } diff --git a/packages/cabin-sketch/package.json b/packages/cabin-sketch/package.json index 9830c2941c2..38cf530a4e1 100644 --- a/packages/cabin-sketch/package.json +++ b/packages/cabin-sketch/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cabin-sketch", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cabin-sketch#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cabin-sketch" + } } diff --git a/packages/cabin/package.json b/packages/cabin/package.json index 628a02d1960..a0d744b73a6 100644 --- a/packages/cabin/package.json +++ b/packages/cabin/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cabin", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cabin#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cabin" + } } diff --git a/packages/caesar-dressing/package.json b/packages/caesar-dressing/package.json index e554a39a58a..9a96dc14a12 100644 --- a/packages/caesar-dressing/package.json +++ b/packages/caesar-dressing/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/caesar-dressing", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/caesar-dressing#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/caesar-dressing" + } } diff --git a/packages/cagliostro/package.json b/packages/cagliostro/package.json index 3aa73509813..055994a5a6e 100644 --- a/packages/cagliostro/package.json +++ b/packages/cagliostro/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cagliostro", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cagliostro#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cagliostro" + } } diff --git a/packages/cairo/package.json b/packages/cairo/package.json index a29e1bc69ab..05ca993c866 100644 --- a/packages/cairo/package.json +++ b/packages/cairo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cairo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cairo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cairo" + } } diff --git a/packages/caladea/package.json b/packages/caladea/package.json index 9fd7bf688f2..0116f972dbe 100644 --- a/packages/caladea/package.json +++ b/packages/caladea/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/caladea", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/caladea#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/caladea" + } } diff --git a/packages/calistoga/package.json b/packages/calistoga/package.json index 1fae938d389..15f67426a33 100644 --- a/packages/calistoga/package.json +++ b/packages/calistoga/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/calistoga", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/calistoga#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/calistoga" + } } diff --git a/packages/calligraffitti/package.json b/packages/calligraffitti/package.json index f6946563c38..f6f8ad6e981 100644 --- a/packages/calligraffitti/package.json +++ b/packages/calligraffitti/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/calligraffitti", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/calligraffitti#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/calligraffitti" + } } diff --git a/packages/cambay/package.json b/packages/cambay/package.json index 5de23b40bf0..ea18897afda 100644 --- a/packages/cambay/package.json +++ b/packages/cambay/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cambay", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cambay#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cambay" + } } diff --git a/packages/cambo/package.json b/packages/cambo/package.json index 9f091a57f77..8554a7f68d4 100644 --- a/packages/cambo/package.json +++ b/packages/cambo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cambo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cambo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cambo" + } } diff --git a/packages/candal/package.json b/packages/candal/package.json index 521f203835c..fd30c6a83b6 100644 --- a/packages/candal/package.json +++ b/packages/candal/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/candal", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/candal#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/candal" + } } diff --git a/packages/cantarell/package.json b/packages/cantarell/package.json index 5ef665dfde5..9914490af44 100644 --- a/packages/cantarell/package.json +++ b/packages/cantarell/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cantarell", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cantarell#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cantarell" + } } diff --git a/packages/cantata-one/package.json b/packages/cantata-one/package.json index a9dff2e6ea2..72220e894d8 100644 --- a/packages/cantata-one/package.json +++ b/packages/cantata-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cantata-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cantata-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cantata-one" + } } diff --git a/packages/cantora-one/package.json b/packages/cantora-one/package.json index fbf0083185f..d77857cff95 100644 --- a/packages/cantora-one/package.json +++ b/packages/cantora-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cantora-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cantora-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cantora-one" + } } diff --git a/packages/capriola/package.json b/packages/capriola/package.json index 2d454c31d51..13f2cb11c06 100644 --- a/packages/capriola/package.json +++ b/packages/capriola/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/capriola", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/capriola#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/capriola" + } } diff --git a/packages/cardo/package.json b/packages/cardo/package.json index 2c3028b9f8d..d6219c9ed2a 100644 --- a/packages/cardo/package.json +++ b/packages/cardo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cardo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cardo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cardo" + } } diff --git a/packages/carme/package.json b/packages/carme/package.json index 1469059c37d..0e2319bf66d 100644 --- a/packages/carme/package.json +++ b/packages/carme/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/carme", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/carme#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/carme" + } } diff --git a/packages/carrois-gothic-sc/package.json b/packages/carrois-gothic-sc/package.json index e7cb44d915c..15910650164 100644 --- a/packages/carrois-gothic-sc/package.json +++ b/packages/carrois-gothic-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/carrois-gothic-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/carrois-gothic-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/carrois-gothic-sc" + } } diff --git a/packages/carrois-gothic/package.json b/packages/carrois-gothic/package.json index d893adc9156..b37d7519f9b 100644 --- a/packages/carrois-gothic/package.json +++ b/packages/carrois-gothic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/carrois-gothic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/carrois-gothic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/carrois-gothic" + } } diff --git a/packages/carter-one/package.json b/packages/carter-one/package.json index 52e05643fe6..76d4f6dda35 100644 --- a/packages/carter-one/package.json +++ b/packages/carter-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/carter-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/carter-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/carter-one" + } } diff --git a/packages/cascadia-code/README.md b/packages/cascadia-code/README.md index 12ce0b19d7e..692c7372ff0 100644 --- a/packages/cascadia-code/README.md +++ b/packages/cascadia-code/README.md @@ -1,4 +1,5 @@ # Fontsource Cascadia Code + [![npm version](https://badge.fury.io/js/fontsource-cascadia-code.svg)](https://www.npmjs.com/package/fontsource-cascadia-code) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-cascadia-code)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-cascadia-code)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Cascadia Code” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin-ext,pl-latin-ext]` - Weights: `[400]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/microsoft/cascadia-code) and [License](https:// Font version (provided by source): `v2005.15`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/cascadia-code/metadata.json b/packages/cascadia-code/metadata.json index fff0bcbdc95..d0a12a08210 100644 --- a/packages/cascadia-code/metadata.json +++ b/packages/cascadia-code/metadata.json @@ -1 +1,13 @@ -{"fontId":"cascadia-code","fontName":"Cascadia Code","subsets":["latin-ext","pl-latin-ext"],"weights":["400"],"styles":["normal"],"defSubset":"latin-ext","lastModified":"2020-08-02","version":"v2005.15","source":"https://github.com/microsoft/cascadia-code","license":"https://github.com/microsoft/cascadia-code/blob/master/LICENSE","type":"other"} +{ + "fontId": "cascadia-code", + "fontName": "Cascadia Code", + "subsets": ["latin-ext", "pl-latin-ext"], + "weights": ["400"], + "styles": ["normal"], + "defSubset": "latin-ext", + "lastModified": "2020-08-02", + "version": "v2005.15", + "source": "https://github.com/microsoft/cascadia-code", + "license": "https://github.com/microsoft/cascadia-code/blob/master/LICENSE", + "type": "other" +} diff --git a/packages/cascadia-code/package.json b/packages/cascadia-code/package.json index e68caead32e..61aa8e16014 100644 --- a/packages/cascadia-code/package.json +++ b/packages/cascadia-code/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cascadia-code#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/cascadia-code" } } diff --git a/packages/cascadia-mono/README.md b/packages/cascadia-mono/README.md index c6bacb61c82..53529441135 100644 --- a/packages/cascadia-mono/README.md +++ b/packages/cascadia-mono/README.md @@ -1,4 +1,5 @@ # Fontsource Cascadia Mono + [![npm version](https://badge.fury.io/js/fontsource-cascadia-mono.svg)](https://www.npmjs.com/package/fontsource-cascadia-mono) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-cascadia-mono)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-cascadia-mono)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Cascadia Mono” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin-ext,pl-latin-ext]` - Weights: `[400]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/microsoft/cascadia-code) and [License](https:// Font version (provided by source): `v2005.15`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/cascadia-mono/metadata.json b/packages/cascadia-mono/metadata.json index 041a1988c93..ab2e643f6d3 100644 --- a/packages/cascadia-mono/metadata.json +++ b/packages/cascadia-mono/metadata.json @@ -1 +1,13 @@ -{"fontId":"cascadia-mono","fontName":"Cascadia Mono","subsets":["latin-ext","pl-latin-ext"],"weights":["400"],"styles":["normal"],"defSubset":"latin-ext","lastModified":"2020-08-02","version":"v2005.15","source":"https://github.com/microsoft/cascadia-code","license":"https://github.com/microsoft/cascadia-code/blob/master/LICENSE","type":"other"} +{ + "fontId": "cascadia-mono", + "fontName": "Cascadia Mono", + "subsets": ["latin-ext", "pl-latin-ext"], + "weights": ["400"], + "styles": ["normal"], + "defSubset": "latin-ext", + "lastModified": "2020-08-02", + "version": "v2005.15", + "source": "https://github.com/microsoft/cascadia-code", + "license": "https://github.com/microsoft/cascadia-code/blob/master/LICENSE", + "type": "other" +} diff --git a/packages/cascadia-mono/package.json b/packages/cascadia-mono/package.json index fd93e9938eb..6774b1d2f5e 100644 --- a/packages/cascadia-mono/package.json +++ b/packages/cascadia-mono/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cascadia-mono#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/cascadia-mono" } } diff --git a/packages/catamaran/package.json b/packages/catamaran/package.json index 357be131a0b..17b3b8f1670 100644 --- a/packages/catamaran/package.json +++ b/packages/catamaran/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/catamaran", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/catamaran#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/catamaran" + } } diff --git a/packages/caudex/package.json b/packages/caudex/package.json index 9f9eb565098..c5bbefc7f11 100644 --- a/packages/caudex/package.json +++ b/packages/caudex/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/caudex", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/caudex#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/caudex" + } } diff --git a/packages/caveat-brush/package.json b/packages/caveat-brush/package.json index b903f331c0f..1f5c0772d55 100644 --- a/packages/caveat-brush/package.json +++ b/packages/caveat-brush/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/caveat-brush", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/caveat-brush#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/caveat-brush" + } } diff --git a/packages/caveat/package.json b/packages/caveat/package.json index ad56cfe7f02..f602e263fd7 100644 --- a/packages/caveat/package.json +++ b/packages/caveat/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/caveat", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/caveat#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/caveat" + } } diff --git a/packages/cedarville-cursive/package.json b/packages/cedarville-cursive/package.json index 317ea30c31e..d099db95d3a 100644 --- a/packages/cedarville-cursive/package.json +++ b/packages/cedarville-cursive/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cedarville-cursive", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cedarville-cursive#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cedarville-cursive" + } } diff --git a/packages/ceviche-one/package.json b/packages/ceviche-one/package.json index f2f4635b7dc..f734909dbef 100644 --- a/packages/ceviche-one/package.json +++ b/packages/ceviche-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ceviche-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ceviche-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ceviche-one" + } } diff --git a/packages/chakra-petch/package.json b/packages/chakra-petch/package.json index b929ab1478f..baa535daedb 100644 --- a/packages/chakra-petch/package.json +++ b/packages/chakra-petch/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chakra-petch", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chakra-petch#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chakra-petch" + } } diff --git a/packages/changa-one/package.json b/packages/changa-one/package.json index fc7fb0e334e..666b78c5ef4 100644 --- a/packages/changa-one/package.json +++ b/packages/changa-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/changa-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/changa-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/changa-one" + } } diff --git a/packages/changa/package.json b/packages/changa/package.json index 7d6e0148798..1f33c3a5102 100644 --- a/packages/changa/package.json +++ b/packages/changa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/changa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/changa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/changa" + } } diff --git a/packages/chango/package.json b/packages/chango/package.json index 399fa6363b6..f2fa5606c68 100644 --- a/packages/chango/package.json +++ b/packages/chango/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chango", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chango#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chango" + } } diff --git a/packages/charm/package.json b/packages/charm/package.json index 856e28899a8..9838c82f6e4 100644 --- a/packages/charm/package.json +++ b/packages/charm/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/charm", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/charm#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/charm" + } } diff --git a/packages/charmonman/package.json b/packages/charmonman/package.json index 3dc9df4aea7..01b6d427227 100644 --- a/packages/charmonman/package.json +++ b/packages/charmonman/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/charmonman", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/charmonman#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/charmonman" + } } diff --git a/packages/chathura/package.json b/packages/chathura/package.json index 9ce61682519..cff0d05bde6 100644 --- a/packages/chathura/package.json +++ b/packages/chathura/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chathura", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chathura#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chathura" + } } diff --git a/packages/chau-philomene-one/package.json b/packages/chau-philomene-one/package.json index b16abc43673..65c5a0e6f87 100644 --- a/packages/chau-philomene-one/package.json +++ b/packages/chau-philomene-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chau-philomene-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chau-philomene-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chau-philomene-one" + } } diff --git a/packages/chela-one/package.json b/packages/chela-one/package.json index e1a57624b78..356a63c6c94 100644 --- a/packages/chela-one/package.json +++ b/packages/chela-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chela-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chela-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chela-one" + } } diff --git a/packages/chelsea-market/package.json b/packages/chelsea-market/package.json index 4d12c23364c..26cc48248ef 100644 --- a/packages/chelsea-market/package.json +++ b/packages/chelsea-market/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chelsea-market", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chelsea-market#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chelsea-market" + } } diff --git a/packages/chenla/package.json b/packages/chenla/package.json index 24c01c7d3e6..755a141560e 100644 --- a/packages/chenla/package.json +++ b/packages/chenla/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chenla", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chenla#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chenla" + } } diff --git a/packages/cherry-cream-soda/package.json b/packages/cherry-cream-soda/package.json index cbc306be293..a477f932afc 100644 --- a/packages/cherry-cream-soda/package.json +++ b/packages/cherry-cream-soda/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cherry-cream-soda", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cherry-cream-soda#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cherry-cream-soda" + } } diff --git a/packages/cherry-swash/package.json b/packages/cherry-swash/package.json index d376aeaf0ee..71381ce7afe 100644 --- a/packages/cherry-swash/package.json +++ b/packages/cherry-swash/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cherry-swash", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cherry-swash#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cherry-swash" + } } diff --git a/packages/chewy/package.json b/packages/chewy/package.json index a35758899e1..7feb1a3bf43 100644 --- a/packages/chewy/package.json +++ b/packages/chewy/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chewy", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chewy#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chewy" + } } diff --git a/packages/chicle/package.json b/packages/chicle/package.json index 1f885579fdc..c38b4cbd591 100644 --- a/packages/chicle/package.json +++ b/packages/chicle/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chicle", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chicle#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chicle" + } } diff --git a/packages/chilanka/package.json b/packages/chilanka/package.json index ab2aec42f38..2f178ec0bfa 100644 --- a/packages/chilanka/package.json +++ b/packages/chilanka/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chilanka", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chilanka#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chilanka" + } } diff --git a/packages/chivo/package.json b/packages/chivo/package.json index 53aa0cca6b9..b9ad1e252db 100644 --- a/packages/chivo/package.json +++ b/packages/chivo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chivo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chivo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chivo" + } } diff --git a/packages/chonburi/package.json b/packages/chonburi/package.json index 696725c8461..93368e79365 100644 --- a/packages/chonburi/package.json +++ b/packages/chonburi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/chonburi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chonburi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/chonburi" + } } diff --git a/packages/chunk-five/README.md b/packages/chunk-five/README.md index 8de154b5802..eba5408b534 100644 --- a/packages/chunk-five/README.md +++ b/packages/chunk-five/README.md @@ -1,4 +1,5 @@ # Fontsource Chunk Five + [![npm version](https://badge.fury.io/js/fontsource-chunk-five.svg)](https://www.npmjs.com/package/fontsource-chunk-five) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-chunk-five)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-chunk-five)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Chunk Five” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[800]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/chunk) and [License](https://github Font version (provided by source): `v5`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/chunk-five/metadata.json b/packages/chunk-five/metadata.json index ebc7e411a40..9a5772395f8 100644 --- a/packages/chunk-five/metadata.json +++ b/packages/chunk-five/metadata.json @@ -1 +1,13 @@ -{"fontId":"chunk-five","fontName":"Chunk Five","subsets":["latin"],"weights":["800"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v5","source":"https://github.com/theleagueof/chunk","license":"https://github.com/theleagueof/chunk/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "chunk-five", + "fontName": "Chunk Five", + "subsets": ["latin"], + "weights": ["800"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v5", + "source": "https://github.com/theleagueof/chunk", + "license": "https://github.com/theleagueof/chunk/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/chunk-five/package.json b/packages/chunk-five/package.json index de6a4c915a4..345de56c638 100644 --- a/packages/chunk-five/package.json +++ b/packages/chunk-five/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/chunk-five#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/chunk-five" } } diff --git a/packages/cinzel-decorative/package.json b/packages/cinzel-decorative/package.json index 0b808d122c9..a6b1a440d6c 100644 --- a/packages/cinzel-decorative/package.json +++ b/packages/cinzel-decorative/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cinzel-decorative", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cinzel-decorative#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cinzel-decorative" + } } diff --git a/packages/cinzel/package.json b/packages/cinzel/package.json index d82e295ddee..8f13ed578ac 100644 --- a/packages/cinzel/package.json +++ b/packages/cinzel/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cinzel", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cinzel#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cinzel" + } } diff --git a/packages/clicker-script/package.json b/packages/clicker-script/package.json index 303a7099de7..76883a15f18 100644 --- a/packages/clicker-script/package.json +++ b/packages/clicker-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/clicker-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/clicker-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/clicker-script" + } } diff --git a/packages/coda-caption/package.json b/packages/coda-caption/package.json index dd0a0bf5626..21360ef9480 100644 --- a/packages/coda-caption/package.json +++ b/packages/coda-caption/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/coda-caption", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/coda-caption#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/coda-caption" + } } diff --git a/packages/coda/package.json b/packages/coda/package.json index 2fec48c6782..a1216f03d1f 100644 --- a/packages/coda/package.json +++ b/packages/coda/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/coda", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/coda#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/coda" + } } diff --git a/packages/codystar/package.json b/packages/codystar/package.json index 2c3ff127920..b062242e13d 100644 --- a/packages/codystar/package.json +++ b/packages/codystar/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/codystar", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/codystar#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/codystar" + } } diff --git a/packages/coiny/package.json b/packages/coiny/package.json index 9fa9f11c845..7915f6ce306 100644 --- a/packages/coiny/package.json +++ b/packages/coiny/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/coiny", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/coiny#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/coiny" + } } diff --git a/packages/combo/package.json b/packages/combo/package.json index 5d159f2e600..51b9ced1c1a 100644 --- a/packages/combo/package.json +++ b/packages/combo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/combo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/combo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/combo" + } } diff --git a/packages/comfortaa/package.json b/packages/comfortaa/package.json index 4d6d278e179..295d5accb3b 100644 --- a/packages/comfortaa/package.json +++ b/packages/comfortaa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/comfortaa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/comfortaa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/comfortaa" + } } diff --git a/packages/comic-neue/package.json b/packages/comic-neue/package.json index 66abbb0abb9..707d0007167 100644 --- a/packages/comic-neue/package.json +++ b/packages/comic-neue/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/comic-neue", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/comic-neue#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/comic-neue" + } } diff --git a/packages/coming-soon/package.json b/packages/coming-soon/package.json index cb358b6503e..79432463cd5 100644 --- a/packages/coming-soon/package.json +++ b/packages/coming-soon/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/coming-soon", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/coming-soon#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/coming-soon" + } } diff --git a/packages/concert-one/package.json b/packages/concert-one/package.json index 79795af44bd..4abb8170793 100644 --- a/packages/concert-one/package.json +++ b/packages/concert-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/concert-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/concert-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/concert-one" + } } diff --git a/packages/condiment/package.json b/packages/condiment/package.json index 6f7c1a91435..d41cadd6ed7 100644 --- a/packages/condiment/package.json +++ b/packages/condiment/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/condiment", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/condiment#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/condiment" + } } diff --git a/packages/content/package.json b/packages/content/package.json index 89e4adee852..ea867ca163b 100644 --- a/packages/content/package.json +++ b/packages/content/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/content", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/content#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/content" + } } diff --git a/packages/contrail-one/package.json b/packages/contrail-one/package.json index 0642b0b2c7a..20949034153 100644 --- a/packages/contrail-one/package.json +++ b/packages/contrail-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/contrail-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/contrail-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/contrail-one" + } } diff --git a/packages/convergence/package.json b/packages/convergence/package.json index ca431dace69..e908d6c4adb 100644 --- a/packages/convergence/package.json +++ b/packages/convergence/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/convergence", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/convergence#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/convergence" + } } diff --git a/packages/cookie/package.json b/packages/cookie/package.json index f70ede5d53e..1b2d29ddfc0 100644 --- a/packages/cookie/package.json +++ b/packages/cookie/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cookie", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cookie#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cookie" + } } diff --git a/packages/copse/package.json b/packages/copse/package.json index 12134595702..960e9f217a4 100644 --- a/packages/copse/package.json +++ b/packages/copse/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/copse", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/copse#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/copse" + } } diff --git a/packages/corben/package.json b/packages/corben/package.json index f575776415a..0b67dc0b9b3 100644 --- a/packages/corben/package.json +++ b/packages/corben/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/corben", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/corben#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/corben" + } } diff --git a/packages/cormorant-garamond/package.json b/packages/cormorant-garamond/package.json index f0077fe05dd..18390d48751 100644 --- a/packages/cormorant-garamond/package.json +++ b/packages/cormorant-garamond/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cormorant-garamond", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cormorant-garamond#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cormorant-garamond" + } } diff --git a/packages/cormorant-infant/package.json b/packages/cormorant-infant/package.json index 4831a4daf8d..dc3def9892a 100644 --- a/packages/cormorant-infant/package.json +++ b/packages/cormorant-infant/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cormorant-infant", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cormorant-infant#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cormorant-infant" + } } diff --git a/packages/cormorant-sc/package.json b/packages/cormorant-sc/package.json index bb8de686ff3..b9d0dcf94a6 100644 --- a/packages/cormorant-sc/package.json +++ b/packages/cormorant-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cormorant-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cormorant-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cormorant-sc" + } } diff --git a/packages/cormorant-unicase/package.json b/packages/cormorant-unicase/package.json index 5a0fcda9754..c77456ace52 100644 --- a/packages/cormorant-unicase/package.json +++ b/packages/cormorant-unicase/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cormorant-unicase", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cormorant-unicase#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cormorant-unicase" + } } diff --git a/packages/cormorant-upright/package.json b/packages/cormorant-upright/package.json index 1eec6afed42..0f86b3c9d36 100644 --- a/packages/cormorant-upright/package.json +++ b/packages/cormorant-upright/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cormorant-upright", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cormorant-upright#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cormorant-upright" + } } diff --git a/packages/cormorant/package.json b/packages/cormorant/package.json index 972b79bba08..68619f33b28 100644 --- a/packages/cormorant/package.json +++ b/packages/cormorant/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cormorant", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cormorant#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cormorant" + } } diff --git a/packages/courgette/package.json b/packages/courgette/package.json index 379ea5934b7..8b5124a24a7 100644 --- a/packages/courgette/package.json +++ b/packages/courgette/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/courgette", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/courgette#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/courgette" + } } diff --git a/packages/courier-prime/package.json b/packages/courier-prime/package.json index f29679ff998..e2de6c20c4a 100644 --- a/packages/courier-prime/package.json +++ b/packages/courier-prime/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/courier-prime", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/courier-prime#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/courier-prime" + } } diff --git a/packages/cousine/package.json b/packages/cousine/package.json index c6350efe26d..054ed59ba4a 100644 --- a/packages/cousine/package.json +++ b/packages/cousine/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cousine", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cousine#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cousine" + } } diff --git a/packages/coustard/package.json b/packages/coustard/package.json index 3817907a733..0a59de8607a 100644 --- a/packages/coustard/package.json +++ b/packages/coustard/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/coustard", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/coustard#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/coustard" + } } diff --git a/packages/covered-by-your-grace/package.json b/packages/covered-by-your-grace/package.json index 5f61c20019f..9d4928847fc 100644 --- a/packages/covered-by-your-grace/package.json +++ b/packages/covered-by-your-grace/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/covered-by-your-grace", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/covered-by-your-grace#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/covered-by-your-grace" + } } diff --git a/packages/crafty-girls/package.json b/packages/crafty-girls/package.json index 5341a0972c3..b13932489bd 100644 --- a/packages/crafty-girls/package.json +++ b/packages/crafty-girls/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/crafty-girls", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/crafty-girls#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/crafty-girls" + } } diff --git a/packages/creepster/package.json b/packages/creepster/package.json index a2b0a1ccfae..201e7e3f89f 100644 --- a/packages/creepster/package.json +++ b/packages/creepster/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/creepster", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/creepster#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/creepster" + } } diff --git a/packages/crete-round/package.json b/packages/crete-round/package.json index 3965a615136..5ac1c20d211 100644 --- a/packages/crete-round/package.json +++ b/packages/crete-round/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/crete-round", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/crete-round#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/crete-round" + } } diff --git a/packages/crimson-pro/package.json b/packages/crimson-pro/package.json index 6d1fab7a2bf..ee3d93bb988 100644 --- a/packages/crimson-pro/package.json +++ b/packages/crimson-pro/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/crimson-pro", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/crimson-pro#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/crimson-pro" + } } diff --git a/packages/crimson-text/package.json b/packages/crimson-text/package.json index e0887bc51d0..befc1ee3d72 100644 --- a/packages/crimson-text/package.json +++ b/packages/crimson-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/crimson-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/crimson-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/crimson-text" + } } diff --git a/packages/croissant-one/package.json b/packages/croissant-one/package.json index 7d857e381d2..f5bd97f214a 100644 --- a/packages/croissant-one/package.json +++ b/packages/croissant-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/croissant-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/croissant-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/croissant-one" + } } diff --git a/packages/crushed/package.json b/packages/crushed/package.json index ac38c26bcf3..e6b8bedd8d3 100644 --- a/packages/crushed/package.json +++ b/packages/crushed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/crushed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/crushed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/crushed" + } } diff --git a/packages/cuprum/package.json b/packages/cuprum/package.json index 4fe7d624eae..fa57ccd97d5 100644 --- a/packages/cuprum/package.json +++ b/packages/cuprum/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cuprum", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cuprum#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cuprum" + } } diff --git a/packages/cute-font/package.json b/packages/cute-font/package.json index f15c949c89a..7f829a1a3f3 100644 --- a/packages/cute-font/package.json +++ b/packages/cute-font/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cute-font", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cute-font#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cute-font" + } } diff --git a/packages/cutive-mono/package.json b/packages/cutive-mono/package.json index 3f95e3fd356..b6897dfc20d 100644 --- a/packages/cutive-mono/package.json +++ b/packages/cutive-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cutive-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cutive-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cutive-mono" + } } diff --git a/packages/cutive/package.json b/packages/cutive/package.json index e3c2b6b79b0..78778150296 100644 --- a/packages/cutive/package.json +++ b/packages/cutive/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/cutive", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/cutive#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/cutive" + } } diff --git a/packages/damion/package.json b/packages/damion/package.json index 8c37ce3c9ac..b6d4cdbd423 100644 --- a/packages/damion/package.json +++ b/packages/damion/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/damion", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/damion#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/damion" + } } diff --git a/packages/dancing-script/package.json b/packages/dancing-script/package.json index d237ec4bb12..7296dbbd579 100644 --- a/packages/dancing-script/package.json +++ b/packages/dancing-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dancing-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dancing-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dancing-script" + } } diff --git a/packages/dangrek/package.json b/packages/dangrek/package.json index 61e30d12c75..92e57d73390 100644 --- a/packages/dangrek/package.json +++ b/packages/dangrek/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dangrek", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dangrek#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dangrek" + } } diff --git a/packages/darker-grotesque/package.json b/packages/darker-grotesque/package.json index cd0ab1695f8..9b3fc076bd5 100644 --- a/packages/darker-grotesque/package.json +++ b/packages/darker-grotesque/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/darker-grotesque", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/darker-grotesque#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/darker-grotesque" + } } diff --git a/packages/david-libre/package.json b/packages/david-libre/package.json index cd619529084..91c9247108e 100644 --- a/packages/david-libre/package.json +++ b/packages/david-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/david-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/david-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/david-libre" + } } diff --git a/packages/dawning-of-a-new-day/package.json b/packages/dawning-of-a-new-day/package.json index fb2a4d62e21..c0dca3fc4f1 100644 --- a/packages/dawning-of-a-new-day/package.json +++ b/packages/dawning-of-a-new-day/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dawning-of-a-new-day", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dawning-of-a-new-day#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dawning-of-a-new-day" + } } diff --git a/packages/days-one/package.json b/packages/days-one/package.json index 47ed0316c8f..9ed0a6946bf 100644 --- a/packages/days-one/package.json +++ b/packages/days-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/days-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/days-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/days-one" + } } diff --git a/packages/dekko/package.json b/packages/dekko/package.json index 729b5c51e64..cd159c51c97 100644 --- a/packages/dekko/package.json +++ b/packages/dekko/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dekko", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dekko#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dekko" + } } diff --git a/packages/delius-swash-caps/package.json b/packages/delius-swash-caps/package.json index d3123401080..ec3358151c5 100644 --- a/packages/delius-swash-caps/package.json +++ b/packages/delius-swash-caps/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/delius-swash-caps", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/delius-swash-caps#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/delius-swash-caps" + } } diff --git a/packages/delius-unicase/package.json b/packages/delius-unicase/package.json index f318251fc0c..4cdf4cd64da 100644 --- a/packages/delius-unicase/package.json +++ b/packages/delius-unicase/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/delius-unicase", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/delius-unicase#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/delius-unicase" + } } diff --git a/packages/delius/package.json b/packages/delius/package.json index b5e3b497eed..7c1bd4b417d 100644 --- a/packages/delius/package.json +++ b/packages/delius/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/delius", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/delius#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/delius" + } } diff --git a/packages/della-respira/package.json b/packages/della-respira/package.json index ca54b348e5d..9f8940eb2a1 100644 --- a/packages/della-respira/package.json +++ b/packages/della-respira/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/della-respira", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/della-respira#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/della-respira" + } } diff --git a/packages/denk-one/package.json b/packages/denk-one/package.json index 7b7a14486cb..a1948f36b0c 100644 --- a/packages/denk-one/package.json +++ b/packages/denk-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/denk-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/denk-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/denk-one" + } } diff --git a/packages/devonshire/package.json b/packages/devonshire/package.json index 4f927b7db38..8b2d183f545 100644 --- a/packages/devonshire/package.json +++ b/packages/devonshire/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/devonshire", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/devonshire#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/devonshire" + } } diff --git a/packages/dhurjati/package.json b/packages/dhurjati/package.json index 3754e88f55c..548f467f5de 100644 --- a/packages/dhurjati/package.json +++ b/packages/dhurjati/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dhurjati", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dhurjati#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dhurjati" + } } diff --git a/packages/didact-gothic/package.json b/packages/didact-gothic/package.json index 599406e1052..8859c5c2b3b 100644 --- a/packages/didact-gothic/package.json +++ b/packages/didact-gothic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/didact-gothic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/didact-gothic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/didact-gothic" + } } diff --git a/packages/diplomata-sc/package.json b/packages/diplomata-sc/package.json index 063e24868d9..a5343dad5e8 100644 --- a/packages/diplomata-sc/package.json +++ b/packages/diplomata-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/diplomata-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/diplomata-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/diplomata-sc" + } } diff --git a/packages/diplomata/package.json b/packages/diplomata/package.json index 9bc50b162b9..20073c0de6a 100644 --- a/packages/diplomata/package.json +++ b/packages/diplomata/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/diplomata", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/diplomata#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/diplomata" + } } diff --git a/packages/dm-mono/package.json b/packages/dm-mono/package.json index 70d758e3ed0..245a6c9ac31 100644 --- a/packages/dm-mono/package.json +++ b/packages/dm-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dm-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dm-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dm-mono" + } } diff --git a/packages/dm-sans/package.json b/packages/dm-sans/package.json index b406dc053fe..58dca2d0523 100644 --- a/packages/dm-sans/package.json +++ b/packages/dm-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dm-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dm-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dm-sans" + } } diff --git a/packages/dm-serif-display/package.json b/packages/dm-serif-display/package.json index 420c06c6bd1..253ebb55591 100644 --- a/packages/dm-serif-display/package.json +++ b/packages/dm-serif-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dm-serif-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dm-serif-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dm-serif-display" + } } diff --git a/packages/dm-serif-text/package.json b/packages/dm-serif-text/package.json index 370a95087e6..1c95e90a739 100644 --- a/packages/dm-serif-text/package.json +++ b/packages/dm-serif-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dm-serif-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dm-serif-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dm-serif-text" + } } diff --git a/packages/do-hyeon/package.json b/packages/do-hyeon/package.json index 6de26e35510..97329838481 100644 --- a/packages/do-hyeon/package.json +++ b/packages/do-hyeon/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/do-hyeon", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/do-hyeon#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/do-hyeon" + } } diff --git a/packages/dokdo/package.json b/packages/dokdo/package.json index efe6d53ac95..66aa8d30228 100644 --- a/packages/dokdo/package.json +++ b/packages/dokdo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dokdo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dokdo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dokdo" + } } diff --git a/packages/domine/package.json b/packages/domine/package.json index 6a6ffacc28f..72218e26882 100644 --- a/packages/domine/package.json +++ b/packages/domine/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/domine", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/domine#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/domine" + } } diff --git a/packages/donegal-one/package.json b/packages/donegal-one/package.json index 06c747ad435..327bd3fab5b 100644 --- a/packages/donegal-one/package.json +++ b/packages/donegal-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/donegal-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/donegal-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/donegal-one" + } } diff --git a/packages/doppio-one/package.json b/packages/doppio-one/package.json index a434b2b5d98..2eac423fc66 100644 --- a/packages/doppio-one/package.json +++ b/packages/doppio-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/doppio-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/doppio-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/doppio-one" + } } diff --git a/packages/dorsa/package.json b/packages/dorsa/package.json index 5c65d4e5f56..3cd771a6692 100644 --- a/packages/dorsa/package.json +++ b/packages/dorsa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dorsa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dorsa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dorsa" + } } diff --git a/packages/dosis/package.json b/packages/dosis/package.json index 191b2703459..6fe1359d95b 100644 --- a/packages/dosis/package.json +++ b/packages/dosis/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dosis", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dosis#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dosis" + } } diff --git a/packages/dr-sugiyama/package.json b/packages/dr-sugiyama/package.json index 0f9c9201434..6eb362439aa 100644 --- a/packages/dr-sugiyama/package.json +++ b/packages/dr-sugiyama/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dr-sugiyama", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dr-sugiyama#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dr-sugiyama" + } } diff --git a/packages/dseg-weather/README.md b/packages/dseg-weather/README.md index a3597a8d64d..5e3312a2131 100644 --- a/packages/dseg-weather/README.md +++ b/packages/dseg-weather/README.md @@ -1,4 +1,5 @@ # Fontsource DSEG Weather + [![npm version](https://badge.fury.io/js/fontsource-dseg-weather.svg)](https://www.npmjs.com/package/fontsource-dseg-weather) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-dseg-weather)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-dseg-weather)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “DSEG Weather” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/keshikan/DSEG) and [License](https://github.com Font version (provided by source): `v0.46`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/dseg-weather/metadata.json b/packages/dseg-weather/metadata.json index ffd02f6a17b..ae278ba46b4 100644 --- a/packages/dseg-weather/metadata.json +++ b/packages/dseg-weather/metadata.json @@ -1 +1,13 @@ -{"fontId":"dseg-weather","fontName":"DSEG Weather","subsets":["latin"],"weights":["400"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v0.46","source":"https://github.com/keshikan/DSEG","license":"https://github.com/keshikan/DSEG/blob/master/DSEG-LICENSE.txt","type":"other"} +{ + "fontId": "dseg-weather", + "fontName": "DSEG Weather", + "subsets": ["latin"], + "weights": ["400"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v0.46", + "source": "https://github.com/keshikan/DSEG", + "license": "https://github.com/keshikan/DSEG/blob/master/DSEG-LICENSE.txt", + "type": "other" +} diff --git a/packages/dseg-weather/package.json b/packages/dseg-weather/package.json index 753a3c6b226..10101a6a222 100644 --- a/packages/dseg-weather/package.json +++ b/packages/dseg-weather/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dseg-weather#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/dseg-weather" } } diff --git a/packages/dseg14/README.md b/packages/dseg14/README.md index c0bc8803c13..49a649eadd6 100644 --- a/packages/dseg14/README.md +++ b/packages/dseg14/README.md @@ -1,4 +1,5 @@ # Fontsource DSEG14 + [![npm version](https://badge.fury.io/js/fontsource-dseg14.svg)](https://www.npmjs.com/package/fontsource-dseg14) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-dseg14)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-dseg14)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “DSEG14” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[classic,classic-mini,modern,modern-mini]` - Weights: `[300,400,700]` - Styles: `[italic,normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/keshikan/DSEG) and [License](https://github.com Font version (provided by source): `v0.46`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/dseg14/metadata.json b/packages/dseg14/metadata.json index db38a1afe49..fee653632cb 100644 --- a/packages/dseg14/metadata.json +++ b/packages/dseg14/metadata.json @@ -1 +1,13 @@ -{"fontId":"dseg14","fontName":"DSEG14","subsets":["classic","classic-mini","modern","modern-mini"],"weights":["300","400","700"],"styles":["italic","normal"],"defSubset":"classic","lastModified":"2020-08-02","version":"v0.46","source":"https://github.com/keshikan/DSEG","license":"https://github.com/keshikan/DSEG/blob/master/DSEG-LICENSE.txt","type":"other"} +{ + "fontId": "dseg14", + "fontName": "DSEG14", + "subsets": ["classic", "classic-mini", "modern", "modern-mini"], + "weights": ["300", "400", "700"], + "styles": ["italic", "normal"], + "defSubset": "classic", + "lastModified": "2020-08-02", + "version": "v0.46", + "source": "https://github.com/keshikan/DSEG", + "license": "https://github.com/keshikan/DSEG/blob/master/DSEG-LICENSE.txt", + "type": "other" +} diff --git a/packages/dseg14/package.json b/packages/dseg14/package.json index 67fec4747c2..75090e8b1c6 100644 --- a/packages/dseg14/package.json +++ b/packages/dseg14/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dseg14#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/dseg14" } } diff --git a/packages/dseg7/README.md b/packages/dseg7/README.md index 3e91e55b23f..bf94053f7a9 100644 --- a/packages/dseg7/README.md +++ b/packages/dseg7/README.md @@ -1,4 +1,5 @@ # Fontsource DSEG7 + [![npm version](https://badge.fury.io/js/fontsource-dseg7.svg)](https://www.npmjs.com/package/fontsource-dseg7) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-dseg7)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-dseg7)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “DSEG7” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[classic,classic-mini,modern,modern-mini,seggchan,seggchan-mini]` - Weights: `[300,400,700]` - Styles: `[italic,normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/keshikan/DSEG) and [License](https://github.com Font version (provided by source): `v0.46`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/dseg7/metadata.json b/packages/dseg7/metadata.json index 12628cc7c3a..072b19bc21d 100644 --- a/packages/dseg7/metadata.json +++ b/packages/dseg7/metadata.json @@ -1 +1,20 @@ -{"fontId":"dseg7","fontName":"DSEG7","subsets":["classic","classic-mini","modern","modern-mini","seggchan","seggchan-mini"],"weights":["300","400","700"],"styles":["italic","normal"],"defSubset":"classic","lastModified":"2020-08-02","version":"v0.46","source":"https://github.com/keshikan/DSEG","license":"https://github.com/keshikan/DSEG/blob/master/DSEG-LICENSE.txt","type":"other"} +{ + "fontId": "dseg7", + "fontName": "DSEG7", + "subsets": [ + "classic", + "classic-mini", + "modern", + "modern-mini", + "seggchan", + "seggchan-mini" + ], + "weights": ["300", "400", "700"], + "styles": ["italic", "normal"], + "defSubset": "classic", + "lastModified": "2020-08-02", + "version": "v0.46", + "source": "https://github.com/keshikan/DSEG", + "license": "https://github.com/keshikan/DSEG/blob/master/DSEG-LICENSE.txt", + "type": "other" +} diff --git a/packages/dseg7/package.json b/packages/dseg7/package.json index 92bfdeb2fa0..6b18ca372e9 100644 --- a/packages/dseg7/package.json +++ b/packages/dseg7/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dseg7#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/dseg7" } } diff --git a/packages/duru-sans/package.json b/packages/duru-sans/package.json index d426f08f269..762d89022b0 100644 --- a/packages/duru-sans/package.json +++ b/packages/duru-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/duru-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/duru-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/duru-sans" + } } diff --git a/packages/dynalight/package.json b/packages/dynalight/package.json index 80329ee5e53..09c6ba568a0 100644 --- a/packages/dynalight/package.json +++ b/packages/dynalight/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/dynalight", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/dynalight#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/dynalight" + } } diff --git a/packages/eagle-lake/package.json b/packages/eagle-lake/package.json index a867b0ad255..5996f978be0 100644 --- a/packages/eagle-lake/package.json +++ b/packages/eagle-lake/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/eagle-lake", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/eagle-lake#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/eagle-lake" + } } diff --git a/packages/east-sea-dokdo/package.json b/packages/east-sea-dokdo/package.json index ede81b8027e..0ac0ff1a8a2 100644 --- a/packages/east-sea-dokdo/package.json +++ b/packages/east-sea-dokdo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/east-sea-dokdo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/east-sea-dokdo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/east-sea-dokdo" + } } diff --git a/packages/eater/package.json b/packages/eater/package.json index eed7d20d971..96fe740b05e 100644 --- a/packages/eater/package.json +++ b/packages/eater/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/eater", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/eater#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/eater" + } } diff --git a/packages/eb-garamond/package.json b/packages/eb-garamond/package.json index 8740e559db0..166a0d5af20 100644 --- a/packages/eb-garamond/package.json +++ b/packages/eb-garamond/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/eb-garamond", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/eb-garamond#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/eb-garamond" + } } diff --git a/packages/economica/package.json b/packages/economica/package.json index 57da5a30bff..f9ea7130a79 100644 --- a/packages/economica/package.json +++ b/packages/economica/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/economica", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/economica#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/economica" + } } diff --git a/packages/eczar/package.json b/packages/eczar/package.json index b023b8e601d..9605c73c0cb 100644 --- a/packages/eczar/package.json +++ b/packages/eczar/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/eczar", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/eczar#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/eczar" + } } diff --git a/packages/el-messiri/package.json b/packages/el-messiri/package.json index 54ee9b25eac..6d14373caf4 100644 --- a/packages/el-messiri/package.json +++ b/packages/el-messiri/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/el-messiri", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/el-messiri#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/el-messiri" + } } diff --git a/packages/electrolize/package.json b/packages/electrolize/package.json index 865a70fc143..e498ce692fb 100644 --- a/packages/electrolize/package.json +++ b/packages/electrolize/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/electrolize", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/electrolize#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/electrolize" + } } diff --git a/packages/elsie-swash-caps/package.json b/packages/elsie-swash-caps/package.json index a5148801541..3d812966023 100644 --- a/packages/elsie-swash-caps/package.json +++ b/packages/elsie-swash-caps/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/elsie-swash-caps", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/elsie-swash-caps#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/elsie-swash-caps" + } } diff --git a/packages/elsie/package.json b/packages/elsie/package.json index e5a3aad342b..82b4db40c1d 100644 --- a/packages/elsie/package.json +++ b/packages/elsie/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/elsie", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/elsie#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/elsie" + } } diff --git a/packages/emblema-one/package.json b/packages/emblema-one/package.json index 81d9711cf28..119d7f3df7f 100644 --- a/packages/emblema-one/package.json +++ b/packages/emblema-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/emblema-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/emblema-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/emblema-one" + } } diff --git a/packages/emilys-candy/package.json b/packages/emilys-candy/package.json index 5f1f0a58e10..20398f543de 100644 --- a/packages/emilys-candy/package.json +++ b/packages/emilys-candy/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/emilys-candy", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/emilys-candy#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/emilys-candy" + } } diff --git a/packages/encode-sans-condensed/package.json b/packages/encode-sans-condensed/package.json index c85f0b0274b..3d655989ecf 100644 --- a/packages/encode-sans-condensed/package.json +++ b/packages/encode-sans-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/encode-sans-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/encode-sans-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/encode-sans-condensed" + } } diff --git a/packages/encode-sans-expanded/package.json b/packages/encode-sans-expanded/package.json index 9300cff387f..1a1f1fc0b12 100644 --- a/packages/encode-sans-expanded/package.json +++ b/packages/encode-sans-expanded/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/encode-sans-expanded", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/encode-sans-expanded#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/encode-sans-expanded" + } } diff --git a/packages/encode-sans-semi-condensed/package.json b/packages/encode-sans-semi-condensed/package.json index 743ffe186dc..cbe76a8fb38 100644 --- a/packages/encode-sans-semi-condensed/package.json +++ b/packages/encode-sans-semi-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/encode-sans-semi-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/encode-sans-semi-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/encode-sans-semi-condensed" + } } diff --git a/packages/encode-sans-semi-expanded/package.json b/packages/encode-sans-semi-expanded/package.json index 44f4b9a1882..b5c5243f513 100644 --- a/packages/encode-sans-semi-expanded/package.json +++ b/packages/encode-sans-semi-expanded/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/encode-sans-semi-expanded", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/encode-sans-semi-expanded#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/encode-sans-semi-expanded" + } } diff --git a/packages/encode-sans/package.json b/packages/encode-sans/package.json index 149569985f8..e7bcf2b58f4 100644 --- a/packages/encode-sans/package.json +++ b/packages/encode-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/encode-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/encode-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/encode-sans" + } } diff --git a/packages/engagement/package.json b/packages/engagement/package.json index 77b80c0a699..e13f7d2a765 100644 --- a/packages/engagement/package.json +++ b/packages/engagement/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/engagement", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/engagement#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/engagement" + } } diff --git a/packages/englebert/package.json b/packages/englebert/package.json index 110960a4f8a..d0c6b9a094e 100644 --- a/packages/englebert/package.json +++ b/packages/englebert/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/englebert", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/englebert#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/englebert" + } } diff --git a/packages/enriqueta/package.json b/packages/enriqueta/package.json index 6076352de89..f86ca8de1c7 100644 --- a/packages/enriqueta/package.json +++ b/packages/enriqueta/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/enriqueta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/enriqueta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/enriqueta" + } } diff --git a/packages/epilogue/package.json b/packages/epilogue/package.json index 0e3349f99e9..4f73e3f583e 100644 --- a/packages/epilogue/package.json +++ b/packages/epilogue/package.json @@ -16,6 +16,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/epilogue", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/epilogue#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/epilogue" + } } diff --git a/packages/erica-one/package.json b/packages/erica-one/package.json index 23903a10043..04976339a85 100644 --- a/packages/erica-one/package.json +++ b/packages/erica-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/erica-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/erica-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/erica-one" + } } diff --git a/packages/esteban/package.json b/packages/esteban/package.json index a93bafbfa2f..d653c428296 100644 --- a/packages/esteban/package.json +++ b/packages/esteban/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/esteban", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/esteban#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/esteban" + } } diff --git a/packages/euphoria-script/package.json b/packages/euphoria-script/package.json index bf33bb92ee5..c9a4e79dd88 100644 --- a/packages/euphoria-script/package.json +++ b/packages/euphoria-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/euphoria-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/euphoria-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/euphoria-script" + } } diff --git a/packages/ewert/package.json b/packages/ewert/package.json index 378e9a29605..91a9ffb12c8 100644 --- a/packages/ewert/package.json +++ b/packages/ewert/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ewert", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ewert#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ewert" + } } diff --git a/packages/exo-2/package.json b/packages/exo-2/package.json index 2374022d951..dcaa9e95587 100644 --- a/packages/exo-2/package.json +++ b/packages/exo-2/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/exo-2", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/exo-2#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/exo-2" + } } diff --git a/packages/exo/package.json b/packages/exo/package.json index ff010cdfbdb..5427353390b 100644 --- a/packages/exo/package.json +++ b/packages/exo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/exo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/exo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/exo" + } } diff --git a/packages/expletus-sans/package.json b/packages/expletus-sans/package.json index 80d94dc28a1..819bfdc2497 100644 --- a/packages/expletus-sans/package.json +++ b/packages/expletus-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/expletus-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/expletus-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/expletus-sans" + } } diff --git a/packages/fahkwang/package.json b/packages/fahkwang/package.json index 028d1d18935..bb49c738f86 100644 --- a/packages/fahkwang/package.json +++ b/packages/fahkwang/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fahkwang", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fahkwang#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fahkwang" + } } diff --git a/packages/fanwood-text/package.json b/packages/fanwood-text/package.json index 229e975d4ef..674e1078124 100644 --- a/packages/fanwood-text/package.json +++ b/packages/fanwood-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fanwood-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fanwood-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fanwood-text" + } } diff --git a/packages/farro/package.json b/packages/farro/package.json index d23d0095d20..a63c1fdebc4 100644 --- a/packages/farro/package.json +++ b/packages/farro/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/farro", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/farro#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/farro" + } } diff --git a/packages/farsan/package.json b/packages/farsan/package.json index 9d993345cec..c46eb036b1d 100644 --- a/packages/farsan/package.json +++ b/packages/farsan/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/farsan", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/farsan#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/farsan" + } } diff --git a/packages/fascinate-inline/package.json b/packages/fascinate-inline/package.json index 952b05d9057..c36a6fccd3d 100644 --- a/packages/fascinate-inline/package.json +++ b/packages/fascinate-inline/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fascinate-inline", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fascinate-inline#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fascinate-inline" + } } diff --git a/packages/fascinate/package.json b/packages/fascinate/package.json index d4e00a59be7..00ead42095d 100644 --- a/packages/fascinate/package.json +++ b/packages/fascinate/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fascinate", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fascinate#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fascinate" + } } diff --git a/packages/faster-one/package.json b/packages/faster-one/package.json index fd6bca8576b..665644857cd 100644 --- a/packages/faster-one/package.json +++ b/packages/faster-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/faster-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/faster-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/faster-one" + } } diff --git a/packages/fasthand/package.json b/packages/fasthand/package.json index fe37a3e0d29..1683129d979 100644 --- a/packages/fasthand/package.json +++ b/packages/fasthand/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fasthand", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fasthand#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fasthand" + } } diff --git a/packages/fauna-one/package.json b/packages/fauna-one/package.json index a0ef79f1f1b..122548e58fe 100644 --- a/packages/fauna-one/package.json +++ b/packages/fauna-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fauna-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fauna-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fauna-one" + } } diff --git a/packages/faustina/package.json b/packages/faustina/package.json index da63fc55dc8..9ce4f367dad 100644 --- a/packages/faustina/package.json +++ b/packages/faustina/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/faustina", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/faustina#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/faustina" + } } diff --git a/packages/federant/package.json b/packages/federant/package.json index f1edb617977..acca3fb09dd 100644 --- a/packages/federant/package.json +++ b/packages/federant/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/federant", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/federant#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/federant" + } } diff --git a/packages/federo/package.json b/packages/federo/package.json index fb0fbc0cf48..f53c2c719f1 100644 --- a/packages/federo/package.json +++ b/packages/federo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/federo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/federo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/federo" + } } diff --git a/packages/felipa/package.json b/packages/felipa/package.json index 146adab0de0..45705a1d674 100644 --- a/packages/felipa/package.json +++ b/packages/felipa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/felipa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/felipa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/felipa" + } } diff --git a/packages/fenix/package.json b/packages/fenix/package.json index e4e32a6b40e..8e3fff27374 100644 --- a/packages/fenix/package.json +++ b/packages/fenix/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fenix", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fenix#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fenix" + } } diff --git a/packages/finger-paint/package.json b/packages/finger-paint/package.json index e28ee93dfad..37af5f23032 100644 --- a/packages/finger-paint/package.json +++ b/packages/finger-paint/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/finger-paint", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/finger-paint#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/finger-paint" + } } diff --git a/packages/fira-code/package.json b/packages/fira-code/package.json index 3f5f11612e2..28e51ddc91b 100644 --- a/packages/fira-code/package.json +++ b/packages/fira-code/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fira-code", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fira-code#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fira-code" + } } diff --git a/packages/fira-mono/package.json b/packages/fira-mono/package.json index ad793d91baa..401f3144dca 100644 --- a/packages/fira-mono/package.json +++ b/packages/fira-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fira-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fira-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fira-mono" + } } diff --git a/packages/fira-sans-condensed/package.json b/packages/fira-sans-condensed/package.json index 18e7607fd09..5abac4a382c 100644 --- a/packages/fira-sans-condensed/package.json +++ b/packages/fira-sans-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fira-sans-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fira-sans-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fira-sans-condensed" + } } diff --git a/packages/fira-sans-extra-condensed/package.json b/packages/fira-sans-extra-condensed/package.json index 687bb51002d..346ca0af0ce 100644 --- a/packages/fira-sans-extra-condensed/package.json +++ b/packages/fira-sans-extra-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fira-sans-extra-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fira-sans-extra-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fira-sans-extra-condensed" + } } diff --git a/packages/fira-sans/package.json b/packages/fira-sans/package.json index 665e022ebf5..e3d330b4cdf 100644 --- a/packages/fira-sans/package.json +++ b/packages/fira-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fira-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fira-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fira-sans" + } } diff --git a/packages/fjalla-one/package.json b/packages/fjalla-one/package.json index 5f9edc90a19..5a731ef674d 100644 --- a/packages/fjalla-one/package.json +++ b/packages/fjalla-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fjalla-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fjalla-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fjalla-one" + } } diff --git a/packages/fjord-one/package.json b/packages/fjord-one/package.json index 42e52ecebfb..b14eceb25d0 100644 --- a/packages/fjord-one/package.json +++ b/packages/fjord-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fjord-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fjord-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fjord-one" + } } diff --git a/packages/flamenco/package.json b/packages/flamenco/package.json index cfbe77352b7..403afbc5414 100644 --- a/packages/flamenco/package.json +++ b/packages/flamenco/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/flamenco", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/flamenco#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/flamenco" + } } diff --git a/packages/flavors/package.json b/packages/flavors/package.json index 147dc4dbdbe..278b551358e 100644 --- a/packages/flavors/package.json +++ b/packages/flavors/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/flavors", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/flavors#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/flavors" + } } diff --git a/packages/fondamento/package.json b/packages/fondamento/package.json index 6564069805c..313bbcea9da 100644 --- a/packages/fondamento/package.json +++ b/packages/fondamento/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fondamento", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fondamento#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fondamento" + } } diff --git a/packages/fontdiner-swanky/package.json b/packages/fontdiner-swanky/package.json index 04e9b541202..12f65e4d24d 100644 --- a/packages/fontdiner-swanky/package.json +++ b/packages/fontdiner-swanky/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fontdiner-swanky", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fontdiner-swanky#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fontdiner-swanky" + } } diff --git a/packages/forum/package.json b/packages/forum/package.json index d8058383359..293a477f9fb 100644 --- a/packages/forum/package.json +++ b/packages/forum/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/forum", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/forum#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/forum" + } } diff --git a/packages/francois-one/package.json b/packages/francois-one/package.json index 706ecba0f5b..c2f27185c99 100644 --- a/packages/francois-one/package.json +++ b/packages/francois-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/francois-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/francois-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/francois-one" + } } diff --git a/packages/frank-ruhl-libre/package.json b/packages/frank-ruhl-libre/package.json index 0424a8e9e6d..73c69dba8e7 100644 --- a/packages/frank-ruhl-libre/package.json +++ b/packages/frank-ruhl-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/frank-ruhl-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/frank-ruhl-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/frank-ruhl-libre" + } } diff --git a/packages/freckle-face/package.json b/packages/freckle-face/package.json index 1d3b6aec715..9b5532a8a09 100644 --- a/packages/freckle-face/package.json +++ b/packages/freckle-face/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/freckle-face", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/freckle-face#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/freckle-face" + } } diff --git a/packages/fredericka-the-great/package.json b/packages/fredericka-the-great/package.json index 83af20d4f01..58edc418c22 100644 --- a/packages/fredericka-the-great/package.json +++ b/packages/fredericka-the-great/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fredericka-the-great", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fredericka-the-great#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fredericka-the-great" + } } diff --git a/packages/fredoka-one/package.json b/packages/fredoka-one/package.json index 04c788ceab5..35950383395 100644 --- a/packages/fredoka-one/package.json +++ b/packages/fredoka-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fredoka-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fredoka-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fredoka-one" + } } diff --git a/packages/freehand/package.json b/packages/freehand/package.json index cadb5e2c944..f11615847ca 100644 --- a/packages/freehand/package.json +++ b/packages/freehand/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/freehand", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/freehand#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/freehand" + } } diff --git a/packages/fresca/package.json b/packages/fresca/package.json index c6da6288b8e..b2663594714 100644 --- a/packages/fresca/package.json +++ b/packages/fresca/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fresca", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fresca#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fresca" + } } diff --git a/packages/frijole/package.json b/packages/frijole/package.json index fdc198fafd4..cb99f5d5d4d 100644 --- a/packages/frijole/package.json +++ b/packages/frijole/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/frijole", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/frijole#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/frijole" + } } diff --git a/packages/fruktur/package.json b/packages/fruktur/package.json index f4c358444e8..6e5093013f9 100644 --- a/packages/fruktur/package.json +++ b/packages/fruktur/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fruktur", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fruktur#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fruktur" + } } diff --git a/packages/fugaz-one/package.json b/packages/fugaz-one/package.json index 235fdf9a9db..a6cb7b5b17e 100644 --- a/packages/fugaz-one/package.json +++ b/packages/fugaz-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/fugaz-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/fugaz-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/fugaz-one" + } } diff --git a/packages/gabriela/package.json b/packages/gabriela/package.json index 370c6642f3c..cb5d7972b55 100644 --- a/packages/gabriela/package.json +++ b/packages/gabriela/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gabriela", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gabriela#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gabriela" + } } diff --git a/packages/gaegu/package.json b/packages/gaegu/package.json index 3b4990b284b..1d74ee5a51a 100644 --- a/packages/gaegu/package.json +++ b/packages/gaegu/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gaegu", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gaegu#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gaegu" + } } diff --git a/packages/gafata/package.json b/packages/gafata/package.json index 0f293c74933..e91db4d9ec1 100644 --- a/packages/gafata/package.json +++ b/packages/gafata/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gafata", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gafata#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gafata" + } } diff --git a/packages/galada/package.json b/packages/galada/package.json index 3fe310f2b47..c5e22b6904f 100644 --- a/packages/galada/package.json +++ b/packages/galada/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/galada", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/galada#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/galada" + } } diff --git a/packages/galdeano/package.json b/packages/galdeano/package.json index a7c852a0227..4e54be47cc8 100644 --- a/packages/galdeano/package.json +++ b/packages/galdeano/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/galdeano", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/galdeano#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/galdeano" + } } diff --git a/packages/galindo/package.json b/packages/galindo/package.json index 1adf6ef6776..fd3a0eb725c 100644 --- a/packages/galindo/package.json +++ b/packages/galindo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/galindo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/galindo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/galindo" + } } diff --git a/packages/gamja-flower/package.json b/packages/gamja-flower/package.json index a65f81831ef..0c734ef7870 100644 --- a/packages/gamja-flower/package.json +++ b/packages/gamja-flower/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gamja-flower", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gamja-flower#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gamja-flower" + } } diff --git a/packages/gayathri/package.json b/packages/gayathri/package.json index a6acf882b0c..2f28a285ce9 100644 --- a/packages/gayathri/package.json +++ b/packages/gayathri/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gayathri", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gayathri#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gayathri" + } } diff --git a/packages/gelasio/package.json b/packages/gelasio/package.json index 2afbfa1e183..db9fff495d5 100644 --- a/packages/gelasio/package.json +++ b/packages/gelasio/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gelasio", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gelasio#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gelasio" + } } diff --git a/packages/gentium-basic/package.json b/packages/gentium-basic/package.json index bdf57cbada0..419de543f0d 100644 --- a/packages/gentium-basic/package.json +++ b/packages/gentium-basic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gentium-basic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gentium-basic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gentium-basic" + } } diff --git a/packages/gentium-book-basic/package.json b/packages/gentium-book-basic/package.json index 40e92d12f25..85bde34a86b 100644 --- a/packages/gentium-book-basic/package.json +++ b/packages/gentium-book-basic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gentium-book-basic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gentium-book-basic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gentium-book-basic" + } } diff --git a/packages/geo/package.json b/packages/geo/package.json index 4a314a2259a..459217f8640 100644 --- a/packages/geo/package.json +++ b/packages/geo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/geo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/geo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/geo" + } } diff --git a/packages/geostar-fill/package.json b/packages/geostar-fill/package.json index 57c25587daf..526fd2e0283 100644 --- a/packages/geostar-fill/package.json +++ b/packages/geostar-fill/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/geostar-fill", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/geostar-fill#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/geostar-fill" + } } diff --git a/packages/geostar/package.json b/packages/geostar/package.json index aa1b306ea09..61d1c105b0b 100644 --- a/packages/geostar/package.json +++ b/packages/geostar/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/geostar", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/geostar#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/geostar" + } } diff --git a/packages/germania-one/package.json b/packages/germania-one/package.json index 71413050d53..cd3cbd3866d 100644 --- a/packages/germania-one/package.json +++ b/packages/germania-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/germania-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/germania-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/germania-one" + } } diff --git a/packages/gfs-didot/package.json b/packages/gfs-didot/package.json index 7cd3db4f5ba..6870e1cf7f5 100644 --- a/packages/gfs-didot/package.json +++ b/packages/gfs-didot/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gfs-didot", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gfs-didot#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gfs-didot" + } } diff --git a/packages/gfs-neohellenic/package.json b/packages/gfs-neohellenic/package.json index 7bad65c0b86..6a68f1e8b2f 100644 --- a/packages/gfs-neohellenic/package.json +++ b/packages/gfs-neohellenic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gfs-neohellenic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gfs-neohellenic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gfs-neohellenic" + } } diff --git a/packages/gidugu/package.json b/packages/gidugu/package.json index 9dbbb40b078..798cbcfe3b9 100644 --- a/packages/gidugu/package.json +++ b/packages/gidugu/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gidugu", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gidugu#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gidugu" + } } diff --git a/packages/gilda-display/package.json b/packages/gilda-display/package.json index 2f147df3b91..d41317fd1fa 100644 --- a/packages/gilda-display/package.json +++ b/packages/gilda-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gilda-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gilda-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gilda-display" + } } diff --git a/packages/girassol/package.json b/packages/girassol/package.json index d7bb46b7683..1fd1911e548 100644 --- a/packages/girassol/package.json +++ b/packages/girassol/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/girassol", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/girassol#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/girassol" + } } diff --git a/packages/give-you-glory/package.json b/packages/give-you-glory/package.json index 6687eaaa3ac..56fc79b4c19 100644 --- a/packages/give-you-glory/package.json +++ b/packages/give-you-glory/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/give-you-glory", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/give-you-glory#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/give-you-glory" + } } diff --git a/packages/glass-antiqua/package.json b/packages/glass-antiqua/package.json index 5e86fadfac9..639dedbc161 100644 --- a/packages/glass-antiqua/package.json +++ b/packages/glass-antiqua/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/glass-antiqua", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/glass-antiqua#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/glass-antiqua" + } } diff --git a/packages/glegoo/package.json b/packages/glegoo/package.json index 71e35b65661..99da60f3c2a 100644 --- a/packages/glegoo/package.json +++ b/packages/glegoo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/glegoo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/glegoo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/glegoo" + } } diff --git a/packages/gloria-hallelujah/package.json b/packages/gloria-hallelujah/package.json index 0b702ccbe4e..c2802fce440 100644 --- a/packages/gloria-hallelujah/package.json +++ b/packages/gloria-hallelujah/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gloria-hallelujah", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gloria-hallelujah#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gloria-hallelujah" + } } diff --git a/packages/goblin-one/package.json b/packages/goblin-one/package.json index 28c2f6c432b..bb287003c41 100644 --- a/packages/goblin-one/package.json +++ b/packages/goblin-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/goblin-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/goblin-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/goblin-one" + } } diff --git a/packages/gochi-hand/package.json b/packages/gochi-hand/package.json index d17e7be9dc9..6721a2abdf6 100644 --- a/packages/gochi-hand/package.json +++ b/packages/gochi-hand/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gochi-hand", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gochi-hand#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gochi-hand" + } } diff --git a/packages/gorditas/package.json b/packages/gorditas/package.json index bbcc9b3744d..c72eeb80b15 100644 --- a/packages/gorditas/package.json +++ b/packages/gorditas/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gorditas", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gorditas#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gorditas" + } } diff --git a/packages/gothic-a1/package.json b/packages/gothic-a1/package.json index 9f5d5f05087..e7556dcaca6 100644 --- a/packages/gothic-a1/package.json +++ b/packages/gothic-a1/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gothic-a1", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gothic-a1#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gothic-a1" + } } diff --git a/packages/gotu/package.json b/packages/gotu/package.json index 91e62bff2fb..9567ed13b8f 100644 --- a/packages/gotu/package.json +++ b/packages/gotu/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gotu", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gotu#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gotu" + } } diff --git a/packages/goudy-bookletter-1911/package.json b/packages/goudy-bookletter-1911/package.json index b48e7d72fed..92ba15daca3 100644 --- a/packages/goudy-bookletter-1911/package.json +++ b/packages/goudy-bookletter-1911/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/goudy-bookletter-1911", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/goudy-bookletter-1911#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/goudy-bookletter-1911" + } } diff --git a/packages/graduate/package.json b/packages/graduate/package.json index efa837f96a1..37013ec2407 100644 --- a/packages/graduate/package.json +++ b/packages/graduate/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/graduate", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/graduate#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/graduate" + } } diff --git a/packages/grand-hotel/package.json b/packages/grand-hotel/package.json index da2bbdd752d..32c607dc723 100644 --- a/packages/grand-hotel/package.json +++ b/packages/grand-hotel/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/grand-hotel", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/grand-hotel#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/grand-hotel" + } } diff --git a/packages/gravitas-one/package.json b/packages/gravitas-one/package.json index 77ee906ddbd..692de20369f 100644 --- a/packages/gravitas-one/package.json +++ b/packages/gravitas-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gravitas-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gravitas-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gravitas-one" + } } diff --git a/packages/great-vibes/package.json b/packages/great-vibes/package.json index 78f4c224687..1b249eb3aed 100644 --- a/packages/great-vibes/package.json +++ b/packages/great-vibes/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/great-vibes", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/great-vibes#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/great-vibes" + } } diff --git a/packages/grenze-gotisch/package.json b/packages/grenze-gotisch/package.json index 6290a713d30..a83b8a74af4 100644 --- a/packages/grenze-gotisch/package.json +++ b/packages/grenze-gotisch/package.json @@ -16,6 +16,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/grenze-gotisch", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/grenze-gotisch#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/grenze-gotisch" + } } diff --git a/packages/grenze/package.json b/packages/grenze/package.json index d0b2ab79479..4584c5adae4 100644 --- a/packages/grenze/package.json +++ b/packages/grenze/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/grenze", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/grenze#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/grenze" + } } diff --git a/packages/griffy/package.json b/packages/griffy/package.json index a58739d19cb..45b060f7070 100644 --- a/packages/griffy/package.json +++ b/packages/griffy/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/griffy", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/griffy#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/griffy" + } } diff --git a/packages/gruppo/package.json b/packages/gruppo/package.json index 63e1fc946a4..ef646beb7f6 100644 --- a/packages/gruppo/package.json +++ b/packages/gruppo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gruppo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gruppo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gruppo" + } } diff --git a/packages/gudea/package.json b/packages/gudea/package.json index be509628a7e..9e3858a268e 100644 --- a/packages/gudea/package.json +++ b/packages/gudea/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gudea", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gudea#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gudea" + } } diff --git a/packages/gugi/package.json b/packages/gugi/package.json index 5eac1d66dfa..0bfe4f79683 100644 --- a/packages/gugi/package.json +++ b/packages/gugi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gugi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gugi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gugi" + } } diff --git a/packages/gupter/package.json b/packages/gupter/package.json index 6357bf16d8f..6bdd6969a62 100644 --- a/packages/gupter/package.json +++ b/packages/gupter/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gupter", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gupter#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gupter" + } } diff --git a/packages/gurajada/package.json b/packages/gurajada/package.json index 74e405359e8..e3895db3a13 100644 --- a/packages/gurajada/package.json +++ b/packages/gurajada/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/gurajada", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/gurajada#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/gurajada" + } } diff --git a/packages/habibi/package.json b/packages/habibi/package.json index 0fe5f0279ff..c7ce19ebdfe 100644 --- a/packages/habibi/package.json +++ b/packages/habibi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/habibi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/habibi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/habibi" + } } diff --git a/packages/halant/package.json b/packages/halant/package.json index b6c3e706454..67c3330855f 100644 --- a/packages/halant/package.json +++ b/packages/halant/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/halant", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/halant#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/halant" + } } diff --git a/packages/hammersmith-one/package.json b/packages/hammersmith-one/package.json index 218d5d64ea8..a70e4475d76 100644 --- a/packages/hammersmith-one/package.json +++ b/packages/hammersmith-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hammersmith-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hammersmith-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hammersmith-one" + } } diff --git a/packages/hanalei-fill/package.json b/packages/hanalei-fill/package.json index 57f1aceb3bc..4f75c676b58 100644 --- a/packages/hanalei-fill/package.json +++ b/packages/hanalei-fill/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hanalei-fill", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hanalei-fill#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hanalei-fill" + } } diff --git a/packages/hanalei/package.json b/packages/hanalei/package.json index 3a67e8747c6..908b0bd2942 100644 --- a/packages/hanalei/package.json +++ b/packages/hanalei/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hanalei", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hanalei#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hanalei" + } } diff --git a/packages/handlee/package.json b/packages/handlee/package.json index 6b96eb400f6..8a18a0e44b0 100644 --- a/packages/handlee/package.json +++ b/packages/handlee/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/handlee", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/handlee#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/handlee" + } } diff --git a/packages/hanuman/package.json b/packages/hanuman/package.json index b998a9156bb..19ad1215146 100644 --- a/packages/hanuman/package.json +++ b/packages/hanuman/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hanuman", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hanuman#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hanuman" + } } diff --git a/packages/happy-monkey/package.json b/packages/happy-monkey/package.json index 7c1d11b6be8..3b255124e8f 100644 --- a/packages/happy-monkey/package.json +++ b/packages/happy-monkey/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/happy-monkey", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/happy-monkey#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/happy-monkey" + } } diff --git a/packages/harmattan/package.json b/packages/harmattan/package.json index a576d4b41ef..901e8b5ede9 100644 --- a/packages/harmattan/package.json +++ b/packages/harmattan/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/harmattan", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/harmattan#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/harmattan" + } } diff --git a/packages/headland-one/package.json b/packages/headland-one/package.json index 76c5d2c43a7..66c60dd4c57 100644 --- a/packages/headland-one/package.json +++ b/packages/headland-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/headland-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/headland-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/headland-one" + } } diff --git a/packages/heebo/package.json b/packages/heebo/package.json index f4a04c1f951..9992574ae6e 100644 --- a/packages/heebo/package.json +++ b/packages/heebo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/heebo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/heebo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/heebo" + } } diff --git a/packages/henny-penny/package.json b/packages/henny-penny/package.json index 59d93cf567f..59ddceb6b5e 100644 --- a/packages/henny-penny/package.json +++ b/packages/henny-penny/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/henny-penny", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/henny-penny#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/henny-penny" + } } diff --git a/packages/hepta-slab/package.json b/packages/hepta-slab/package.json index 067aa2bfb48..cc88f691e89 100644 --- a/packages/hepta-slab/package.json +++ b/packages/hepta-slab/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hepta-slab", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hepta-slab#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hepta-slab" + } } diff --git a/packages/herr-von-muellerhoff/package.json b/packages/herr-von-muellerhoff/package.json index 096c6d624dd..fa812292039 100644 --- a/packages/herr-von-muellerhoff/package.json +++ b/packages/herr-von-muellerhoff/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/herr-von-muellerhoff", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/herr-von-muellerhoff#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/herr-von-muellerhoff" + } } diff --git a/packages/hi-melody/package.json b/packages/hi-melody/package.json index dbacdec1529..b2099e23cca 100644 --- a/packages/hi-melody/package.json +++ b/packages/hi-melody/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hi-melody", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hi-melody#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hi-melody" + } } diff --git a/packages/hind-guntur/package.json b/packages/hind-guntur/package.json index a14142cf1d4..b50f9383169 100644 --- a/packages/hind-guntur/package.json +++ b/packages/hind-guntur/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hind-guntur", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hind-guntur#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hind-guntur" + } } diff --git a/packages/hind-madurai/package.json b/packages/hind-madurai/package.json index c028f14e3d1..6efe9bd1ad0 100644 --- a/packages/hind-madurai/package.json +++ b/packages/hind-madurai/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hind-madurai", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hind-madurai#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hind-madurai" + } } diff --git a/packages/hind-siliguri/package.json b/packages/hind-siliguri/package.json index 488e76daaab..f5c8ba08334 100644 --- a/packages/hind-siliguri/package.json +++ b/packages/hind-siliguri/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hind-siliguri", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hind-siliguri#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hind-siliguri" + } } diff --git a/packages/hind-vadodara/package.json b/packages/hind-vadodara/package.json index 657f69bc55e..cbd1993575b 100644 --- a/packages/hind-vadodara/package.json +++ b/packages/hind-vadodara/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hind-vadodara", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hind-vadodara#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hind-vadodara" + } } diff --git a/packages/hind/package.json b/packages/hind/package.json index 5ad1666907a..f4c17c7ee88 100644 --- a/packages/hind/package.json +++ b/packages/hind/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/hind", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/hind#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/hind" + } } diff --git a/packages/holtwood-one-sc/package.json b/packages/holtwood-one-sc/package.json index a6da4bb4965..faca865e3f9 100644 --- a/packages/holtwood-one-sc/package.json +++ b/packages/holtwood-one-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/holtwood-one-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/holtwood-one-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/holtwood-one-sc" + } } diff --git a/packages/homemade-apple/package.json b/packages/homemade-apple/package.json index 8013bd03564..9b3355ad507 100644 --- a/packages/homemade-apple/package.json +++ b/packages/homemade-apple/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/homemade-apple", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/homemade-apple#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/homemade-apple" + } } diff --git a/packages/homenaje/package.json b/packages/homenaje/package.json index 1231f05a065..1c0a9d86a7d 100644 --- a/packages/homenaje/package.json +++ b/packages/homenaje/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/homenaje", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/homenaje#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/homenaje" + } } diff --git a/packages/ibarra-real-nova/package.json b/packages/ibarra-real-nova/package.json index cc1fcb09bbd..3b23e00ed9d 100644 --- a/packages/ibarra-real-nova/package.json +++ b/packages/ibarra-real-nova/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ibarra-real-nova", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ibarra-real-nova#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ibarra-real-nova" + } } diff --git a/packages/ibm-plex-mono/package.json b/packages/ibm-plex-mono/package.json index ab151ea4fcb..f9439228f29 100644 --- a/packages/ibm-plex-mono/package.json +++ b/packages/ibm-plex-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ibm-plex-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ibm-plex-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ibm-plex-mono" + } } diff --git a/packages/ibm-plex-sans-condensed/package.json b/packages/ibm-plex-sans-condensed/package.json index 7a2439bfa26..1f270786db4 100644 --- a/packages/ibm-plex-sans-condensed/package.json +++ b/packages/ibm-plex-sans-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ibm-plex-sans-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ibm-plex-sans-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ibm-plex-sans-condensed" + } } diff --git a/packages/ibm-plex-sans/package.json b/packages/ibm-plex-sans/package.json index 2cb0eb388bd..da7839b3863 100644 --- a/packages/ibm-plex-sans/package.json +++ b/packages/ibm-plex-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ibm-plex-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ibm-plex-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ibm-plex-sans" + } } diff --git a/packages/ibm-plex-serif/package.json b/packages/ibm-plex-serif/package.json index d51eeb75731..b48ee31bfa3 100644 --- a/packages/ibm-plex-serif/package.json +++ b/packages/ibm-plex-serif/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ibm-plex-serif", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ibm-plex-serif#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ibm-plex-serif" + } } diff --git a/packages/iceberg/package.json b/packages/iceberg/package.json index c1afbe195f9..9bf2c1089f2 100644 --- a/packages/iceberg/package.json +++ b/packages/iceberg/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/iceberg", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/iceberg#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/iceberg" + } } diff --git a/packages/iceland/package.json b/packages/iceland/package.json index 6830f3547dc..e364f422ebc 100644 --- a/packages/iceland/package.json +++ b/packages/iceland/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/iceland", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/iceland#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/iceland" + } } diff --git a/packages/im-fell-double-pica-sc/package.json b/packages/im-fell-double-pica-sc/package.json index e6f2f3116f2..ba5c7590b8a 100644 --- a/packages/im-fell-double-pica-sc/package.json +++ b/packages/im-fell-double-pica-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-double-pica-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-double-pica-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-double-pica-sc" + } } diff --git a/packages/im-fell-double-pica/package.json b/packages/im-fell-double-pica/package.json index f513c4551a1..b32186ba41b 100644 --- a/packages/im-fell-double-pica/package.json +++ b/packages/im-fell-double-pica/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-double-pica", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-double-pica#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-double-pica" + } } diff --git a/packages/im-fell-dw-pica-sc/package.json b/packages/im-fell-dw-pica-sc/package.json index 9898a788642..c044aed94df 100644 --- a/packages/im-fell-dw-pica-sc/package.json +++ b/packages/im-fell-dw-pica-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-dw-pica-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-dw-pica-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-dw-pica-sc" + } } diff --git a/packages/im-fell-dw-pica/package.json b/packages/im-fell-dw-pica/package.json index 7db7cab7929..68712863217 100644 --- a/packages/im-fell-dw-pica/package.json +++ b/packages/im-fell-dw-pica/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-dw-pica", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-dw-pica#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-dw-pica" + } } diff --git a/packages/im-fell-english-sc/package.json b/packages/im-fell-english-sc/package.json index 64a54c7c62a..e10f6e382d9 100644 --- a/packages/im-fell-english-sc/package.json +++ b/packages/im-fell-english-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-english-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-english-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-english-sc" + } } diff --git a/packages/im-fell-english/package.json b/packages/im-fell-english/package.json index d4899e54663..8f6ddf984f5 100644 --- a/packages/im-fell-english/package.json +++ b/packages/im-fell-english/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-english", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-english#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-english" + } } diff --git a/packages/im-fell-french-canon-sc/package.json b/packages/im-fell-french-canon-sc/package.json index 51dd6966e59..5ff316d97e8 100644 --- a/packages/im-fell-french-canon-sc/package.json +++ b/packages/im-fell-french-canon-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-french-canon-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-french-canon-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-french-canon-sc" + } } diff --git a/packages/im-fell-french-canon/package.json b/packages/im-fell-french-canon/package.json index ae52139f141..d6ab2c7e277 100644 --- a/packages/im-fell-french-canon/package.json +++ b/packages/im-fell-french-canon/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-french-canon", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-french-canon#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-french-canon" + } } diff --git a/packages/im-fell-great-primer-sc/package.json b/packages/im-fell-great-primer-sc/package.json index 049702ffaca..b4907b9cccf 100644 --- a/packages/im-fell-great-primer-sc/package.json +++ b/packages/im-fell-great-primer-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-great-primer-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-great-primer-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-great-primer-sc" + } } diff --git a/packages/im-fell-great-primer/package.json b/packages/im-fell-great-primer/package.json index 354876ed84c..e14b9017ad8 100644 --- a/packages/im-fell-great-primer/package.json +++ b/packages/im-fell-great-primer/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/im-fell-great-primer", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/im-fell-great-primer#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/im-fell-great-primer" + } } diff --git a/packages/imprima/package.json b/packages/imprima/package.json index 8522c808e8d..cd6dd2cfa79 100644 --- a/packages/imprima/package.json +++ b/packages/imprima/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/imprima", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/imprima#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/imprima" + } } diff --git a/packages/inconsolata/package.json b/packages/inconsolata/package.json index 0745cb3ea3d..8554bfeeaf5 100644 --- a/packages/inconsolata/package.json +++ b/packages/inconsolata/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/inconsolata", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/inconsolata#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/inconsolata" + } } diff --git a/packages/inder/package.json b/packages/inder/package.json index a505acf7eda..172389d3771 100644 --- a/packages/inder/package.json +++ b/packages/inder/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/inder", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/inder#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/inder" + } } diff --git a/packages/indie-flower/package.json b/packages/indie-flower/package.json index c681da347f8..b20fc6497cc 100644 --- a/packages/indie-flower/package.json +++ b/packages/indie-flower/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/indie-flower", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/indie-flower#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/indie-flower" + } } diff --git a/packages/inika/package.json b/packages/inika/package.json index d4614b3f1d3..9b8fffab0eb 100644 --- a/packages/inika/package.json +++ b/packages/inika/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/inika", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/inika#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/inika" + } } diff --git a/packages/inknut-antiqua/package.json b/packages/inknut-antiqua/package.json index e1c1c1e32a1..891927aa738 100644 --- a/packages/inknut-antiqua/package.json +++ b/packages/inknut-antiqua/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/inknut-antiqua", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/inknut-antiqua#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/inknut-antiqua" + } } diff --git a/packages/inria-sans/package.json b/packages/inria-sans/package.json index 283cc48eab5..2c025923d38 100644 --- a/packages/inria-sans/package.json +++ b/packages/inria-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/inria-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/inria-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/inria-sans" + } } diff --git a/packages/inria-serif/package.json b/packages/inria-serif/package.json index 1557aebfe0a..36c055f3716 100644 --- a/packages/inria-serif/package.json +++ b/packages/inria-serif/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/inria-serif", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/inria-serif#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/inria-serif" + } } diff --git a/packages/inter/package.json b/packages/inter/package.json index cd3282157a7..6c5bcb6ba6b 100644 --- a/packages/inter/package.json +++ b/packages/inter/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/inter", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/inter#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/inter" + } } diff --git a/packages/irish-grover/package.json b/packages/irish-grover/package.json index 95ccf8b1b6d..7fa48605e0a 100644 --- a/packages/irish-grover/package.json +++ b/packages/irish-grover/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/irish-grover", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/irish-grover#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/irish-grover" + } } diff --git a/packages/istok-web/package.json b/packages/istok-web/package.json index db5b42ca934..125b4206c3e 100644 --- a/packages/istok-web/package.json +++ b/packages/istok-web/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/istok-web", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/istok-web#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/istok-web" + } } diff --git a/packages/italiana/package.json b/packages/italiana/package.json index 2aee5190422..abe0326eb85 100644 --- a/packages/italiana/package.json +++ b/packages/italiana/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/italiana", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/italiana#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/italiana" + } } diff --git a/packages/italianno/package.json b/packages/italianno/package.json index 9269e42ab12..a42ac73691b 100644 --- a/packages/italianno/package.json +++ b/packages/italianno/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/italianno", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/italianno#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/italianno" + } } diff --git a/packages/itim/package.json b/packages/itim/package.json index 33dea81eea7..122cb1041b9 100644 --- a/packages/itim/package.json +++ b/packages/itim/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/itim", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/itim#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/itim" + } } diff --git a/packages/jacques-francois-shadow/package.json b/packages/jacques-francois-shadow/package.json index 9398aeb3b1f..eaf741f97e6 100644 --- a/packages/jacques-francois-shadow/package.json +++ b/packages/jacques-francois-shadow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jacques-francois-shadow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jacques-francois-shadow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jacques-francois-shadow" + } } diff --git a/packages/jacques-francois/package.json b/packages/jacques-francois/package.json index 2eb73f8b216..46a4460453d 100644 --- a/packages/jacques-francois/package.json +++ b/packages/jacques-francois/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jacques-francois", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jacques-francois#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jacques-francois" + } } diff --git a/packages/jaldi/package.json b/packages/jaldi/package.json index 06a5433a54f..de063f0f782 100644 --- a/packages/jaldi/package.json +++ b/packages/jaldi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jaldi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jaldi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jaldi" + } } diff --git a/packages/jetbrains-mono/README.md b/packages/jetbrains-mono/README.md index 527b5f04fed..96e00399ade 100644 --- a/packages/jetbrains-mono/README.md +++ b/packages/jetbrains-mono/README.md @@ -1,4 +1,5 @@ # Fontsource Jetbrains Mono + [![npm version](https://badge.fury.io/js/fontsource-jetbrains-mono.svg)](https://www.npmjs.com/package/fontsource-jetbrains-mono) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-jetbrains-mono)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-jetbrains-mono)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Jetbrains Mono” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[all]` - Weights: `[400,500,700,800]` - Styles: `[italic,normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/JetBrains/JetBrainsMono) and [License](https:// Font version (provided by source): `v1.06`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/jetbrains-mono/metadata.json b/packages/jetbrains-mono/metadata.json index f7ebc4c846b..7b1f763130b 100644 --- a/packages/jetbrains-mono/metadata.json +++ b/packages/jetbrains-mono/metadata.json @@ -1 +1,13 @@ -{"fontId":"jetbrains-mono","fontName":"Jetbrains Mono","subsets":["all"],"weights":["400","500","700","800"],"styles":["italic","normal"],"defSubset":"all","lastModified":"2020-08-02","version":"v1.06","source":"https://github.com/JetBrains/JetBrainsMono","license":"https://github.com/JetBrains/JetBrainsMono/blob/master/LICENSE","type":"other"} +{ + "fontId": "jetbrains-mono", + "fontName": "Jetbrains Mono", + "subsets": ["all"], + "weights": ["400", "500", "700", "800"], + "styles": ["italic", "normal"], + "defSubset": "all", + "lastModified": "2020-08-02", + "version": "v1.06", + "source": "https://github.com/JetBrains/JetBrainsMono", + "license": "https://github.com/JetBrains/JetBrainsMono/blob/master/LICENSE", + "type": "other" +} diff --git a/packages/jetbrains-mono/package.json b/packages/jetbrains-mono/package.json index f91f045fb7a..b0df8b8df00 100644 --- a/packages/jetbrains-mono/package.json +++ b/packages/jetbrains-mono/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jetbrains-mono#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/jetbrains-mono" } } diff --git a/packages/jim-nightshade/package.json b/packages/jim-nightshade/package.json index 87f19c956ff..56f55f7a644 100644 --- a/packages/jim-nightshade/package.json +++ b/packages/jim-nightshade/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jim-nightshade", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jim-nightshade#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jim-nightshade" + } } diff --git a/packages/jockey-one/package.json b/packages/jockey-one/package.json index 8f473f22697..2fe964c94c5 100644 --- a/packages/jockey-one/package.json +++ b/packages/jockey-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jockey-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jockey-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jockey-one" + } } diff --git a/packages/jolly-lodger/package.json b/packages/jolly-lodger/package.json index 033bf71a65d..5c0a47c0085 100644 --- a/packages/jolly-lodger/package.json +++ b/packages/jolly-lodger/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jolly-lodger", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jolly-lodger#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jolly-lodger" + } } diff --git a/packages/jomhuria/package.json b/packages/jomhuria/package.json index d438ba21a86..e772f4d0114 100644 --- a/packages/jomhuria/package.json +++ b/packages/jomhuria/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jomhuria", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jomhuria#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jomhuria" + } } diff --git a/packages/jomolhari/package.json b/packages/jomolhari/package.json index 52e5e9f7c86..9074ea56910 100644 --- a/packages/jomolhari/package.json +++ b/packages/jomolhari/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jomolhari", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jomolhari#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jomolhari" + } } diff --git a/packages/josefin-sans/package.json b/packages/josefin-sans/package.json index b88acf6ef05..4dfe97e9090 100644 --- a/packages/josefin-sans/package.json +++ b/packages/josefin-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/josefin-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/josefin-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/josefin-sans" + } } diff --git a/packages/josefin-slab/package.json b/packages/josefin-slab/package.json index b94a50be991..db77493928c 100644 --- a/packages/josefin-slab/package.json +++ b/packages/josefin-slab/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/josefin-slab", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/josefin-slab#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/josefin-slab" + } } diff --git a/packages/jost/package.json b/packages/jost/package.json index c9925525fe6..f7cc9a764fb 100644 --- a/packages/jost/package.json +++ b/packages/jost/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jost", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jost#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jost" + } } diff --git a/packages/joti-one/package.json b/packages/joti-one/package.json index 1d0e59f4337..c91338cd8f9 100644 --- a/packages/joti-one/package.json +++ b/packages/joti-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/joti-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/joti-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/joti-one" + } } diff --git a/packages/jua/package.json b/packages/jua/package.json index 935c9b877e3..7183aaa7409 100644 --- a/packages/jua/package.json +++ b/packages/jua/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jua", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jua#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jua" + } } diff --git a/packages/judson/package.json b/packages/judson/package.json index 145c67e7010..c24b224bea3 100644 --- a/packages/judson/package.json +++ b/packages/judson/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/judson", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/judson#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/judson" + } } diff --git a/packages/julee/package.json b/packages/julee/package.json index 2cc5d703b95..70661d04823 100644 --- a/packages/julee/package.json +++ b/packages/julee/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/julee", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/julee#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/julee" + } } diff --git a/packages/julius-sans-one/package.json b/packages/julius-sans-one/package.json index 35602c2704b..4f3b8ac306b 100644 --- a/packages/julius-sans-one/package.json +++ b/packages/julius-sans-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/julius-sans-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/julius-sans-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/julius-sans-one" + } } diff --git a/packages/junction/README.md b/packages/junction/README.md index b71612afb21..26a2d50916a 100644 --- a/packages/junction/README.md +++ b/packages/junction/README.md @@ -1,4 +1,5 @@ # Fontsource Junction + [![npm version](https://badge.fury.io/js/fontsource-junction.svg)](https://www.npmjs.com/package/fontsource-junction) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-junction)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-junction)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Junction” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[300,400,700]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/junction) and [License](https://git Font version (provided by source): `v10`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/junction/metadata.json b/packages/junction/metadata.json index 7973f5b5424..58e26ca32cd 100644 --- a/packages/junction/metadata.json +++ b/packages/junction/metadata.json @@ -1 +1,13 @@ -{"fontId":"junction","fontName":"Junction","subsets":["latin"],"weights":["300","400","700"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v10","source":"https://github.com/theleagueof/junction","license":"https://github.com/theleagueof/junction/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "junction", + "fontName": "Junction", + "subsets": ["latin"], + "weights": ["300", "400", "700"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v10", + "source": "https://github.com/theleagueof/junction", + "license": "https://github.com/theleagueof/junction/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/junction/package.json b/packages/junction/package.json index b9fef7ccbef..60ae0bd8128 100644 --- a/packages/junction/package.json +++ b/packages/junction/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/junction#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/junction" } } diff --git a/packages/junge/package.json b/packages/junge/package.json index 6d591083721..b07d491dd02 100644 --- a/packages/junge/package.json +++ b/packages/junge/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/junge", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/junge#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/junge" + } } diff --git a/packages/jura/package.json b/packages/jura/package.json index 56e34139450..994af63a126 100644 --- a/packages/jura/package.json +++ b/packages/jura/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/jura", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/jura#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/jura" + } } diff --git a/packages/just-another-hand/package.json b/packages/just-another-hand/package.json index f214a0b3a8e..2ed670771d1 100644 --- a/packages/just-another-hand/package.json +++ b/packages/just-another-hand/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/just-another-hand", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/just-another-hand#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/just-another-hand" + } } diff --git a/packages/just-me-again-down-here/package.json b/packages/just-me-again-down-here/package.json index e5dc649bc23..b996254c4ff 100644 --- a/packages/just-me-again-down-here/package.json +++ b/packages/just-me-again-down-here/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/just-me-again-down-here", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/just-me-again-down-here#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/just-me-again-down-here" + } } diff --git a/packages/k2d/package.json b/packages/k2d/package.json index 788b7330df8..9006e19aace 100644 --- a/packages/k2d/package.json +++ b/packages/k2d/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/k2d", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/k2d#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/k2d" + } } diff --git a/packages/kadwa/package.json b/packages/kadwa/package.json index 1385f93f01d..ed204af08ed 100644 --- a/packages/kadwa/package.json +++ b/packages/kadwa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kadwa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kadwa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kadwa" + } } diff --git a/packages/kalam/package.json b/packages/kalam/package.json index 2b303bd3574..8b33ab0e00b 100644 --- a/packages/kalam/package.json +++ b/packages/kalam/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kalam", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kalam#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kalam" + } } diff --git a/packages/kameron/package.json b/packages/kameron/package.json index 4f573e6f8a2..8f49d740887 100644 --- a/packages/kameron/package.json +++ b/packages/kameron/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kameron", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kameron#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kameron" + } } diff --git a/packages/kanit/package.json b/packages/kanit/package.json index 24cb2644654..f09d5ee88e5 100644 --- a/packages/kanit/package.json +++ b/packages/kanit/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kanit", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kanit#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kanit" + } } diff --git a/packages/kantumruy/package.json b/packages/kantumruy/package.json index dca7b44cd62..de80cd62481 100644 --- a/packages/kantumruy/package.json +++ b/packages/kantumruy/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kantumruy", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kantumruy#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kantumruy" + } } diff --git a/packages/karla/package.json b/packages/karla/package.json index ad8b9c249cf..c4273df89ac 100644 --- a/packages/karla/package.json +++ b/packages/karla/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/karla", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/karla#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/karla" + } } diff --git a/packages/karma/package.json b/packages/karma/package.json index 733fdbbc209..a51b2bada18 100644 --- a/packages/karma/package.json +++ b/packages/karma/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/karma", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/karma#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/karma" + } } diff --git a/packages/karmilla/README.md b/packages/karmilla/README.md index 315cfd8126b..005ba6d4af4 100644 --- a/packages/karmilla/README.md +++ b/packages/karmilla/README.md @@ -1,4 +1,5 @@ # Fontsource Karmilla + [![npm version](https://badge.fury.io/js/fontsource-karmilla.svg)](https://www.npmjs.com/package/fontsource-karmilla) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-karmilla)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-karmilla)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Karmilla” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[all]` - Weights: `[400,700]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/ms-studio/karmilla) and [License](https://githu Font version (provided by source): `v0.15b`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/karmilla/metadata.json b/packages/karmilla/metadata.json index d1be4c5ac9a..0699b5f7cbf 100644 --- a/packages/karmilla/metadata.json +++ b/packages/karmilla/metadata.json @@ -1 +1,13 @@ -{"fontId":"karmilla","fontName":"Karmilla","subsets":["all"],"weights":["400","700"],"styles":["normal"],"defSubset":"all","lastModified":"2020-08-02","version":"v0.15b","source":"https://github.com/ms-studio/karmilla","license":"https://github.com/ms-studio/karmilla/blob/master/OFL.txt","type":"other"} +{ + "fontId": "karmilla", + "fontName": "Karmilla", + "subsets": ["all"], + "weights": ["400", "700"], + "styles": ["normal"], + "defSubset": "all", + "lastModified": "2020-08-02", + "version": "v0.15b", + "source": "https://github.com/ms-studio/karmilla", + "license": "https://github.com/ms-studio/karmilla/blob/master/OFL.txt", + "type": "other" +} diff --git a/packages/karmilla/package.json b/packages/karmilla/package.json index 9e6481c8d8f..1a78427dc2b 100644 --- a/packages/karmilla/package.json +++ b/packages/karmilla/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/karmilla#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/karmilla" } } diff --git a/packages/katibeh/package.json b/packages/katibeh/package.json index ec4738f7a13..06506c8c52b 100644 --- a/packages/katibeh/package.json +++ b/packages/katibeh/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/katibeh", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/katibeh#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/katibeh" + } } diff --git a/packages/kaushan-script/package.json b/packages/kaushan-script/package.json index a9fda349566..27bbf0767d2 100644 --- a/packages/kaushan-script/package.json +++ b/packages/kaushan-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kaushan-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kaushan-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kaushan-script" + } } diff --git a/packages/kavivanar/package.json b/packages/kavivanar/package.json index f36c3649056..0bcd1b11883 100644 --- a/packages/kavivanar/package.json +++ b/packages/kavivanar/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kavivanar", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kavivanar#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kavivanar" + } } diff --git a/packages/kavoon/package.json b/packages/kavoon/package.json index fdaf069fb00..ed9321da003 100644 --- a/packages/kavoon/package.json +++ b/packages/kavoon/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kavoon", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kavoon#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kavoon" + } } diff --git a/packages/kdam-thmor/package.json b/packages/kdam-thmor/package.json index 01b752c3097..fba299ba0d5 100644 --- a/packages/kdam-thmor/package.json +++ b/packages/kdam-thmor/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kdam-thmor", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kdam-thmor#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kdam-thmor" + } } diff --git a/packages/keania-one/package.json b/packages/keania-one/package.json index 933a58518c7..cacfdf90520 100644 --- a/packages/keania-one/package.json +++ b/packages/keania-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/keania-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/keania-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/keania-one" + } } diff --git a/packages/kelly-slab/package.json b/packages/kelly-slab/package.json index 98f52007602..8782e82c5ae 100644 --- a/packages/kelly-slab/package.json +++ b/packages/kelly-slab/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kelly-slab", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kelly-slab#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kelly-slab" + } } diff --git a/packages/kenia/package.json b/packages/kenia/package.json index 07598e0ef80..7953b66d3cc 100644 --- a/packages/kenia/package.json +++ b/packages/kenia/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kenia", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kenia#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kenia" + } } diff --git a/packages/khand/package.json b/packages/khand/package.json index 813fc94ddb2..c7e2cc0d147 100644 --- a/packages/khand/package.json +++ b/packages/khand/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/khand", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/khand#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/khand" + } } diff --git a/packages/khmer/package.json b/packages/khmer/package.json index 7bb55424c31..92efaa7a617 100644 --- a/packages/khmer/package.json +++ b/packages/khmer/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/khmer", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/khmer#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/khmer" + } } diff --git a/packages/khula/package.json b/packages/khula/package.json index 37d24beac96..9b9a34fd22b 100644 --- a/packages/khula/package.json +++ b/packages/khula/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/khula", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/khula#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/khula" + } } diff --git a/packages/kirang-haerang/package.json b/packages/kirang-haerang/package.json index 051bf95995d..c3d66a1448a 100644 --- a/packages/kirang-haerang/package.json +++ b/packages/kirang-haerang/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kirang-haerang", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kirang-haerang#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kirang-haerang" + } } diff --git a/packages/kite-one/package.json b/packages/kite-one/package.json index 39bc22525e8..36345b2a843 100644 --- a/packages/kite-one/package.json +++ b/packages/kite-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kite-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kite-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kite-one" + } } diff --git a/packages/knewave/package.json b/packages/knewave/package.json index 652e53af0e7..f353f8d971a 100644 --- a/packages/knewave/package.json +++ b/packages/knewave/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/knewave", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/knewave#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/knewave" + } } diff --git a/packages/kodchasan/package.json b/packages/kodchasan/package.json index 88fff850041..8ac221078a6 100644 --- a/packages/kodchasan/package.json +++ b/packages/kodchasan/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kodchasan", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kodchasan#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kodchasan" + } } diff --git a/packages/koho/package.json b/packages/koho/package.json index 0deb3561268..502a9e36119 100644 --- a/packages/koho/package.json +++ b/packages/koho/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/koho", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/koho#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/koho" + } } diff --git a/packages/kosugi-maru/package.json b/packages/kosugi-maru/package.json index ade706b1321..71ae915149e 100644 --- a/packages/kosugi-maru/package.json +++ b/packages/kosugi-maru/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kosugi-maru", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kosugi-maru#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kosugi-maru" + } } diff --git a/packages/kosugi/package.json b/packages/kosugi/package.json index 8117a9b9311..01ea3afe95b 100644 --- a/packages/kosugi/package.json +++ b/packages/kosugi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kosugi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kosugi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kosugi" + } } diff --git a/packages/kotta-one/package.json b/packages/kotta-one/package.json index 210aa86f440..cca7fbcc92c 100644 --- a/packages/kotta-one/package.json +++ b/packages/kotta-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kotta-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kotta-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kotta-one" + } } diff --git a/packages/koulen/package.json b/packages/koulen/package.json index 138aeabbc99..c96e96ecd7f 100644 --- a/packages/koulen/package.json +++ b/packages/koulen/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/koulen", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/koulen#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/koulen" + } } diff --git a/packages/kranky/package.json b/packages/kranky/package.json index b89715c41d3..fb965e30ce6 100644 --- a/packages/kranky/package.json +++ b/packages/kranky/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kranky", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kranky#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kranky" + } } diff --git a/packages/kreon/package.json b/packages/kreon/package.json index 69ec1be0e62..738c089f1f3 100644 --- a/packages/kreon/package.json +++ b/packages/kreon/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kreon", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kreon#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kreon" + } } diff --git a/packages/kristi/package.json b/packages/kristi/package.json index e06813d14a8..71ea76decb1 100644 --- a/packages/kristi/package.json +++ b/packages/kristi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kristi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kristi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kristi" + } } diff --git a/packages/krona-one/package.json b/packages/krona-one/package.json index 53b5610881f..0b44d1fcd4d 100644 --- a/packages/krona-one/package.json +++ b/packages/krona-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/krona-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/krona-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/krona-one" + } } diff --git a/packages/krub/package.json b/packages/krub/package.json index a6e90040ca2..72d287969f1 100644 --- a/packages/krub/package.json +++ b/packages/krub/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/krub", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/krub#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/krub" + } } diff --git a/packages/kulim-park/package.json b/packages/kulim-park/package.json index 0251c182f6d..5db1eb643a5 100644 --- a/packages/kulim-park/package.json +++ b/packages/kulim-park/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kulim-park", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kulim-park#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kulim-park" + } } diff --git a/packages/kumar-one-outline/package.json b/packages/kumar-one-outline/package.json index 09bcc935c4b..cdae6b9ebb0 100644 --- a/packages/kumar-one-outline/package.json +++ b/packages/kumar-one-outline/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kumar-one-outline", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kumar-one-outline#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kumar-one-outline" + } } diff --git a/packages/kumar-one/package.json b/packages/kumar-one/package.json index 02daab553a8..d4e0d142ea9 100644 --- a/packages/kumar-one/package.json +++ b/packages/kumar-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kumar-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kumar-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kumar-one" + } } diff --git a/packages/kurale/package.json b/packages/kurale/package.json index 1cce2575a61..1379654f2c8 100644 --- a/packages/kurale/package.json +++ b/packages/kurale/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/kurale", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/kurale#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/kurale" + } } diff --git a/packages/la-belle-aurore/package.json b/packages/la-belle-aurore/package.json index 5486219ca9d..5b94f3c7525 100644 --- a/packages/la-belle-aurore/package.json +++ b/packages/la-belle-aurore/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/la-belle-aurore", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/la-belle-aurore#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/la-belle-aurore" + } } diff --git a/packages/lacquer/package.json b/packages/lacquer/package.json index e4483397709..4cca44b6619 100644 --- a/packages/lacquer/package.json +++ b/packages/lacquer/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lacquer", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lacquer#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lacquer" + } } diff --git a/packages/laila/package.json b/packages/laila/package.json index 93a6c776946..dd36737ef9d 100644 --- a/packages/laila/package.json +++ b/packages/laila/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/laila", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/laila#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/laila" + } } diff --git a/packages/lakki-reddy/package.json b/packages/lakki-reddy/package.json index 9f259256d95..d8c8f2d6277 100644 --- a/packages/lakki-reddy/package.json +++ b/packages/lakki-reddy/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lakki-reddy", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lakki-reddy#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lakki-reddy" + } } diff --git a/packages/lalezar/package.json b/packages/lalezar/package.json index 97e9a4bf8f3..5c21bed9e9b 100644 --- a/packages/lalezar/package.json +++ b/packages/lalezar/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lalezar", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lalezar#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lalezar" + } } diff --git a/packages/lancelot/package.json b/packages/lancelot/package.json index a9408ddeb78..ac0185a5fe6 100644 --- a/packages/lancelot/package.json +++ b/packages/lancelot/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lancelot", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lancelot#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lancelot" + } } diff --git a/packages/lateef/package.json b/packages/lateef/package.json index cee28252a42..a3faa0cbbce 100644 --- a/packages/lateef/package.json +++ b/packages/lateef/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lateef", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lateef#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lateef" + } } diff --git a/packages/lato/package.json b/packages/lato/package.json index e234816c9f9..7d5d473636e 100644 --- a/packages/lato/package.json +++ b/packages/lato/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lato", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lato#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lato" + } } diff --git a/packages/league-gothic-condensed/README.md b/packages/league-gothic-condensed/README.md index 8b3ef3deaca..6512f8a718d 100644 --- a/packages/league-gothic-condensed/README.md +++ b/packages/league-gothic-condensed/README.md @@ -1,4 +1,5 @@ # Fontsource League Gothic Condensed + [![npm version](https://badge.fury.io/js/fontsource-league-gothic-condensed.svg)](https://www.npmjs.com/package/fontsource-league-gothic-condensed) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-league-gothic-condensed)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-league-gothic-condensed)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “League Gothic Condensed” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400]` - Styles: `[italic,normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/league-gothic) and [License](https: Font version (provided by source): `v34`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/league-gothic-condensed/metadata.json b/packages/league-gothic-condensed/metadata.json index 4185519bef7..0d3c483ae4a 100644 --- a/packages/league-gothic-condensed/metadata.json +++ b/packages/league-gothic-condensed/metadata.json @@ -1 +1,13 @@ -{"fontId":"league-gothic-condensed","fontName":"League Gothic Condensed","subsets":["latin"],"weights":["400"],"styles":["italic","normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v34","source":"https://github.com/theleagueof/league-gothic","license":"https://github.com/theleagueof/league-gothic/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "league-gothic-condensed", + "fontName": "League Gothic Condensed", + "subsets": ["latin"], + "weights": ["400"], + "styles": ["italic", "normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v34", + "source": "https://github.com/theleagueof/league-gothic", + "license": "https://github.com/theleagueof/league-gothic/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/league-gothic-condensed/package.json b/packages/league-gothic-condensed/package.json index df34b1e0a69..7e213635870 100644 --- a/packages/league-gothic-condensed/package.json +++ b/packages/league-gothic-condensed/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/league-gothic-condensed#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/league-gothic-condensed" } } diff --git a/packages/league-gothic/README.md b/packages/league-gothic/README.md index d02157d9178..d12aa6b0191 100644 --- a/packages/league-gothic/README.md +++ b/packages/league-gothic/README.md @@ -1,4 +1,5 @@ # Fontsource League Gothic + [![npm version](https://badge.fury.io/js/fontsource-league-gothic.svg)](https://www.npmjs.com/package/fontsource-league-gothic) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-league-gothic)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-league-gothic)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “League Gothic” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400]` - Styles: `[italic,normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/league-gothic) and [License](https: Font version (provided by source): `v34`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/league-gothic/metadata.json b/packages/league-gothic/metadata.json index a7fb005fa18..991dd281f40 100644 --- a/packages/league-gothic/metadata.json +++ b/packages/league-gothic/metadata.json @@ -1 +1,13 @@ -{"fontId":"league-gothic","fontName":"League Gothic","subsets":["latin"],"weights":["400"],"styles":["italic","normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v34","source":"https://github.com/theleagueof/league-gothic","license":"https://github.com/theleagueof/league-gothic/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "league-gothic", + "fontName": "League Gothic", + "subsets": ["latin"], + "weights": ["400"], + "styles": ["italic", "normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v34", + "source": "https://github.com/theleagueof/league-gothic", + "license": "https://github.com/theleagueof/league-gothic/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/league-gothic/package.json b/packages/league-gothic/package.json index f7ca7488735..e9d4af56147 100644 --- a/packages/league-gothic/package.json +++ b/packages/league-gothic/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/league-gothic#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/league-gothic" } } diff --git a/packages/league-mono-condensed/README.md b/packages/league-mono-condensed/README.md index db06d4caeae..6526c09318d 100644 --- a/packages/league-mono-condensed/README.md +++ b/packages/league-mono-condensed/README.md @@ -1,4 +1,5 @@ # Fontsource League Mono Condensed + [![npm version](https://badge.fury.io/js/fontsource-league-mono-condensed.svg)](https://www.npmjs.com/package/fontsource-league-mono-condensed) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-league-mono-condensed)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-league-mono-condensed)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “League Mono Condensed” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin-ext]` - Weights: `[100,200,300,400,500,600,700,800]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/sursly/leaguemono) and [License](https://github Font version (provided by source): `v2.2`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/league-mono-condensed/metadata.json b/packages/league-mono-condensed/metadata.json index dc6cf628668..c49044be1cb 100644 --- a/packages/league-mono-condensed/metadata.json +++ b/packages/league-mono-condensed/metadata.json @@ -1 +1,13 @@ -{"fontId":"league-mono-condensed","fontName":"League Mono Condensed","subsets":["latin-ext"],"weights":["100","200","300","400","500","600","700","800"],"styles":["normal"],"defSubset":"latin-ext","lastModified":"2020-08-02","version":"v2.2","source":"https://github.com/sursly/leaguemono","license":"https://github.com/sursly/leaguemono/blob/master/ofl.markdown","type":"league"} +{ + "fontId": "league-mono-condensed", + "fontName": "League Mono Condensed", + "subsets": ["latin-ext"], + "weights": ["100", "200", "300", "400", "500", "600", "700", "800"], + "styles": ["normal"], + "defSubset": "latin-ext", + "lastModified": "2020-08-02", + "version": "v2.2", + "source": "https://github.com/sursly/leaguemono", + "license": "https://github.com/sursly/leaguemono/blob/master/ofl.markdown", + "type": "league" +} diff --git a/packages/league-mono-condensed/package.json b/packages/league-mono-condensed/package.json index dcb0094ed71..fddb9e768ef 100644 --- a/packages/league-mono-condensed/package.json +++ b/packages/league-mono-condensed/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/league-mono-condensed#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/league-mono-condensed" } } diff --git a/packages/league-mono-extended/README.md b/packages/league-mono-extended/README.md index d72b4f3257e..1113314553e 100644 --- a/packages/league-mono-extended/README.md +++ b/packages/league-mono-extended/README.md @@ -1,4 +1,5 @@ # Fontsource League Mono Extended + [![npm version](https://badge.fury.io/js/fontsource-league-mono-extended.svg)](https://www.npmjs.com/package/fontsource-league-mono-extended) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-league-mono-extended)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-league-mono-extended)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “League Mono Extended” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin-ext]` - Weights: `[100,200,300,400,500,600,700,800]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/sursly/leaguemono) and [License](https://github Font version (provided by source): `v2.2`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/league-mono-extended/metadata.json b/packages/league-mono-extended/metadata.json index 7ff597e53ac..fd26b5fd5f2 100644 --- a/packages/league-mono-extended/metadata.json +++ b/packages/league-mono-extended/metadata.json @@ -1 +1,13 @@ -{"fontId":"league-mono-extended","fontName":"League Mono Extended","subsets":["latin-ext"],"weights":["100","200","300","400","500","600","700","800"],"styles":["normal"],"defSubset":"latin-ext","lastModified":"2020-08-02","version":"v2.2","source":"https://github.com/sursly/leaguemono","license":"https://github.com/sursly/leaguemono/blob/master/ofl.markdown","type":"league"} +{ + "fontId": "league-mono-extended", + "fontName": "League Mono Extended", + "subsets": ["latin-ext"], + "weights": ["100", "200", "300", "400", "500", "600", "700", "800"], + "styles": ["normal"], + "defSubset": "latin-ext", + "lastModified": "2020-08-02", + "version": "v2.2", + "source": "https://github.com/sursly/leaguemono", + "license": "https://github.com/sursly/leaguemono/blob/master/ofl.markdown", + "type": "league" +} diff --git a/packages/league-mono-extended/package.json b/packages/league-mono-extended/package.json index f4b6648ea7a..005254391b1 100644 --- a/packages/league-mono-extended/package.json +++ b/packages/league-mono-extended/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/league-mono-extended#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/league-mono-extended" } } diff --git a/packages/league-mono-narrow/README.md b/packages/league-mono-narrow/README.md index 6a5afe8c3dd..5671ec5836d 100644 --- a/packages/league-mono-narrow/README.md +++ b/packages/league-mono-narrow/README.md @@ -1,4 +1,5 @@ # Fontsource League Mono Narrow + [![npm version](https://badge.fury.io/js/fontsource-league-mono-narrow.svg)](https://www.npmjs.com/package/fontsource-league-mono-narrow) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-league-mono-narrow)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-league-mono-narrow)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “League Mono Narrow” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin-ext]` - Weights: `[100,200,300,400,500,600,700,800]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/sursly/leaguemono) and [License](https://github Font version (provided by source): `v2.2`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/league-mono-narrow/metadata.json b/packages/league-mono-narrow/metadata.json index a1229856a90..327fd1f233d 100644 --- a/packages/league-mono-narrow/metadata.json +++ b/packages/league-mono-narrow/metadata.json @@ -1 +1,13 @@ -{"fontId":"league-mono-narrow","fontName":"League Mono Narrow","subsets":["latin-ext"],"weights":["100","200","300","400","500","600","700","800"],"styles":["normal"],"defSubset":"latin-ext","lastModified":"2020-08-02","version":"v2.2","source":"https://github.com/sursly/leaguemono","license":"https://github.com/sursly/leaguemono/blob/master/ofl.markdown","type":"league"} +{ + "fontId": "league-mono-narrow", + "fontName": "League Mono Narrow", + "subsets": ["latin-ext"], + "weights": ["100", "200", "300", "400", "500", "600", "700", "800"], + "styles": ["normal"], + "defSubset": "latin-ext", + "lastModified": "2020-08-02", + "version": "v2.2", + "source": "https://github.com/sursly/leaguemono", + "license": "https://github.com/sursly/leaguemono/blob/master/ofl.markdown", + "type": "league" +} diff --git a/packages/league-mono-narrow/package.json b/packages/league-mono-narrow/package.json index a677a0c73b3..cb56a57efaa 100644 --- a/packages/league-mono-narrow/package.json +++ b/packages/league-mono-narrow/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/league-mono-narrow#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/league-mono-narrow" } } diff --git a/packages/league-mono-wide/README.md b/packages/league-mono-wide/README.md index 60c753e4d16..8a36a82dbcc 100644 --- a/packages/league-mono-wide/README.md +++ b/packages/league-mono-wide/README.md @@ -1,4 +1,5 @@ # Fontsource League Mono Wide + [![npm version](https://badge.fury.io/js/fontsource-league-mono-wide.svg)](https://www.npmjs.com/package/fontsource-league-mono-wide) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-league-mono-wide)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-league-mono-wide)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “League Mono Wide” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin-ext]` - Weights: `[100,200,300,400,500,600,700,800]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/sursly/leaguemono) and [License](https://github Font version (provided by source): `v2.2`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/league-mono-wide/metadata.json b/packages/league-mono-wide/metadata.json index 5e52d3c9f7e..fe8a081faf2 100644 --- a/packages/league-mono-wide/metadata.json +++ b/packages/league-mono-wide/metadata.json @@ -1 +1,13 @@ -{"fontId":"league-mono-wide","fontName":"League Mono Wide","subsets":["latin-ext"],"weights":["100","200","300","400","500","600","700","800"],"styles":["normal"],"defSubset":"latin-ext","lastModified":"2020-08-02","version":"v2.2","source":"https://github.com/sursly/leaguemono","license":"https://github.com/sursly/leaguemono/blob/master/ofl.markdown","type":"league"} +{ + "fontId": "league-mono-wide", + "fontName": "League Mono Wide", + "subsets": ["latin-ext"], + "weights": ["100", "200", "300", "400", "500", "600", "700", "800"], + "styles": ["normal"], + "defSubset": "latin-ext", + "lastModified": "2020-08-02", + "version": "v2.2", + "source": "https://github.com/sursly/leaguemono", + "license": "https://github.com/sursly/leaguemono/blob/master/ofl.markdown", + "type": "league" +} diff --git a/packages/league-mono-wide/package.json b/packages/league-mono-wide/package.json index 2f3b6c8dc9b..dd1068f6b44 100644 --- a/packages/league-mono-wide/package.json +++ b/packages/league-mono-wide/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/league-mono-wide#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/league-mono-wide" } } diff --git a/packages/league-mono/README.md b/packages/league-mono/README.md index 6638b10140a..87976136ad4 100644 --- a/packages/league-mono/README.md +++ b/packages/league-mono/README.md @@ -1,4 +1,5 @@ # Fontsource League Mono + [![npm version](https://badge.fury.io/js/fontsource-league-mono.svg)](https://www.npmjs.com/package/fontsource-league-mono) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-league-mono)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-league-mono)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “League Mono” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin-ext]` - Weights: `[100,200,300,400,500,600,700,800]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/sursly/leaguemono) and [License](https://github Font version (provided by source): `v2.2`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/league-mono/metadata.json b/packages/league-mono/metadata.json index 5d384aa42a6..d85e76e3ed7 100644 --- a/packages/league-mono/metadata.json +++ b/packages/league-mono/metadata.json @@ -1 +1,13 @@ -{"fontId":"league-mono","fontName":"League Mono","subsets":["latin-ext"],"weights":["100","200","300","400","500","600","700","800"],"styles":["normal"],"defSubset":"latin-ext","lastModified":"2020-08-02","version":"v2.2","source":"https://github.com/sursly/leaguemono","license":"https://github.com/sursly/leaguemono/blob/master/ofl.markdown","type":"league"} +{ + "fontId": "league-mono", + "fontName": "League Mono", + "subsets": ["latin-ext"], + "weights": ["100", "200", "300", "400", "500", "600", "700", "800"], + "styles": ["normal"], + "defSubset": "latin-ext", + "lastModified": "2020-08-02", + "version": "v2.2", + "source": "https://github.com/sursly/leaguemono", + "license": "https://github.com/sursly/leaguemono/blob/master/ofl.markdown", + "type": "league" +} diff --git a/packages/league-mono/package.json b/packages/league-mono/package.json index ee9e402c5a2..a4bedbed605 100644 --- a/packages/league-mono/package.json +++ b/packages/league-mono/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/league-mono#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/league-mono" } } diff --git a/packages/league-script/package.json b/packages/league-script/package.json index 6df5de671bd..28469a2f3cf 100644 --- a/packages/league-script/package.json +++ b/packages/league-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/league-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/league-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/league-script" + } } diff --git a/packages/league-spartan/README.md b/packages/league-spartan/README.md index cdfe3dd3658..bad8056dd19 100644 --- a/packages/league-spartan/README.md +++ b/packages/league-spartan/README.md @@ -1,4 +1,5 @@ # Fontsource League Spartan + [![npm version](https://badge.fury.io/js/fontsource-league-spartan.svg)](https://www.npmjs.com/package/fontsource-league-spartan) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-league-spartan)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-league-spartan)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “League Spartan” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[200,300,400,500,600,700,800,900]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/league-spartan) and [License](https Font version (provided by source): `v2.201`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/league-spartan/metadata.json b/packages/league-spartan/metadata.json index 6a593413a7a..32adc46a768 100644 --- a/packages/league-spartan/metadata.json +++ b/packages/league-spartan/metadata.json @@ -1 +1,13 @@ -{"fontId":"league-spartan","fontName":"League Spartan","subsets":["latin"],"weights":["200","300","400","500","600","700","800","900"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v2.201","source":"https://github.com/theleagueof/league-spartan","license":"https://github.com/theleagueof/league-spartan/blob/master/ofl.markdown","type":"league"} +{ + "fontId": "league-spartan", + "fontName": "League Spartan", + "subsets": ["latin"], + "weights": ["200", "300", "400", "500", "600", "700", "800", "900"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v2.201", + "source": "https://github.com/theleagueof/league-spartan", + "license": "https://github.com/theleagueof/league-spartan/blob/master/ofl.markdown", + "type": "league" +} diff --git a/packages/league-spartan/package.json b/packages/league-spartan/package.json index 46375cd9251..54ebc85a54a 100644 --- a/packages/league-spartan/package.json +++ b/packages/league-spartan/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/league-spartan#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/league-spartan" } } diff --git a/packages/leckerli-one/package.json b/packages/leckerli-one/package.json index de07d853060..0aa5e506964 100644 --- a/packages/leckerli-one/package.json +++ b/packages/leckerli-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/leckerli-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/leckerli-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/leckerli-one" + } } diff --git a/packages/ledger/package.json b/packages/ledger/package.json index 85bea468d4e..97455c5d106 100644 --- a/packages/ledger/package.json +++ b/packages/ledger/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ledger", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ledger#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ledger" + } } diff --git a/packages/lekton/package.json b/packages/lekton/package.json index 261d45b60cd..0815f4e417f 100644 --- a/packages/lekton/package.json +++ b/packages/lekton/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lekton", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lekton#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lekton" + } } diff --git a/packages/lemon/package.json b/packages/lemon/package.json index 5d4b1b469c6..d2140577fc0 100644 --- a/packages/lemon/package.json +++ b/packages/lemon/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lemon", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lemon#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lemon" + } } diff --git a/packages/lemonada/package.json b/packages/lemonada/package.json index 4180a7dc026..15e71584add 100644 --- a/packages/lemonada/package.json +++ b/packages/lemonada/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lemonada", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lemonada#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lemonada" + } } diff --git a/packages/lexend-deca/package.json b/packages/lexend-deca/package.json index 3befc34baab..173e15ea506 100644 --- a/packages/lexend-deca/package.json +++ b/packages/lexend-deca/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lexend-deca", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lexend-deca#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lexend-deca" + } } diff --git a/packages/lexend-exa/package.json b/packages/lexend-exa/package.json index 1bc6a2c885f..61bdaa5629a 100644 --- a/packages/lexend-exa/package.json +++ b/packages/lexend-exa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lexend-exa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lexend-exa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lexend-exa" + } } diff --git a/packages/lexend-giga/package.json b/packages/lexend-giga/package.json index 01bd91009ce..c56acf78d71 100644 --- a/packages/lexend-giga/package.json +++ b/packages/lexend-giga/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lexend-giga", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lexend-giga#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lexend-giga" + } } diff --git a/packages/lexend-mega/package.json b/packages/lexend-mega/package.json index fe54cd1e9aa..e39fcb6a7b7 100644 --- a/packages/lexend-mega/package.json +++ b/packages/lexend-mega/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lexend-mega", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lexend-mega#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lexend-mega" + } } diff --git a/packages/lexend-peta/package.json b/packages/lexend-peta/package.json index b4e40264a76..0a87e160978 100644 --- a/packages/lexend-peta/package.json +++ b/packages/lexend-peta/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lexend-peta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lexend-peta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lexend-peta" + } } diff --git a/packages/lexend-tera/package.json b/packages/lexend-tera/package.json index 3a3882f9da0..4a3fdc136d5 100644 --- a/packages/lexend-tera/package.json +++ b/packages/lexend-tera/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lexend-tera", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lexend-tera#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lexend-tera" + } } diff --git a/packages/lexend-zetta/package.json b/packages/lexend-zetta/package.json index 0bffdf1e32a..6c763431541 100644 --- a/packages/lexend-zetta/package.json +++ b/packages/lexend-zetta/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lexend-zetta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lexend-zetta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lexend-zetta" + } } diff --git a/packages/libre-barcode-128-text/package.json b/packages/libre-barcode-128-text/package.json index e29c044d112..171a56073ae 100644 --- a/packages/libre-barcode-128-text/package.json +++ b/packages/libre-barcode-128-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-barcode-128-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-barcode-128-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-barcode-128-text" + } } diff --git a/packages/libre-barcode-128/package.json b/packages/libre-barcode-128/package.json index 45839e6899b..c7a59955f47 100644 --- a/packages/libre-barcode-128/package.json +++ b/packages/libre-barcode-128/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-barcode-128", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-barcode-128#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-barcode-128" + } } diff --git a/packages/libre-barcode-39-extended-text/package.json b/packages/libre-barcode-39-extended-text/package.json index 3536d6c374a..909b171a826 100644 --- a/packages/libre-barcode-39-extended-text/package.json +++ b/packages/libre-barcode-39-extended-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-barcode-39-extended-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-barcode-39-extended-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-barcode-39-extended-text" + } } diff --git a/packages/libre-barcode-39-extended/package.json b/packages/libre-barcode-39-extended/package.json index 89ec616d546..3ca0f86b3e9 100644 --- a/packages/libre-barcode-39-extended/package.json +++ b/packages/libre-barcode-39-extended/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-barcode-39-extended", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-barcode-39-extended#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-barcode-39-extended" + } } diff --git a/packages/libre-barcode-39-text/package.json b/packages/libre-barcode-39-text/package.json index 2a314b0bb07..22a8a838050 100644 --- a/packages/libre-barcode-39-text/package.json +++ b/packages/libre-barcode-39-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-barcode-39-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-barcode-39-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-barcode-39-text" + } } diff --git a/packages/libre-barcode-39/package.json b/packages/libre-barcode-39/package.json index f743d9b6986..6d86b04c7e9 100644 --- a/packages/libre-barcode-39/package.json +++ b/packages/libre-barcode-39/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-barcode-39", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-barcode-39#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-barcode-39" + } } diff --git a/packages/libre-baskerville/package.json b/packages/libre-baskerville/package.json index c696d6f1fec..ae2e02e8dcb 100644 --- a/packages/libre-baskerville/package.json +++ b/packages/libre-baskerville/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-baskerville", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-baskerville#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-baskerville" + } } diff --git a/packages/libre-caslon-display/package.json b/packages/libre-caslon-display/package.json index 4b7591f7d27..da524494335 100644 --- a/packages/libre-caslon-display/package.json +++ b/packages/libre-caslon-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-caslon-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-caslon-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-caslon-display" + } } diff --git a/packages/libre-caslon-text/package.json b/packages/libre-caslon-text/package.json index 3d5864f4e3d..d512eb398fc 100644 --- a/packages/libre-caslon-text/package.json +++ b/packages/libre-caslon-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-caslon-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-caslon-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-caslon-text" + } } diff --git a/packages/libre-franklin/package.json b/packages/libre-franklin/package.json index 493a8507495..779d6b8afd5 100644 --- a/packages/libre-franklin/package.json +++ b/packages/libre-franklin/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/libre-franklin", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/libre-franklin#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/libre-franklin" + } } diff --git a/packages/life-savers/package.json b/packages/life-savers/package.json index dc0c51d9635..53746ae2ce8 100644 --- a/packages/life-savers/package.json +++ b/packages/life-savers/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/life-savers", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/life-savers#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/life-savers" + } } diff --git a/packages/lilita-one/package.json b/packages/lilita-one/package.json index b5f84f5816d..92a460fff32 100644 --- a/packages/lilita-one/package.json +++ b/packages/lilita-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lilita-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lilita-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lilita-one" + } } diff --git a/packages/lily-script-one/package.json b/packages/lily-script-one/package.json index a47e297f623..4c22a090728 100644 --- a/packages/lily-script-one/package.json +++ b/packages/lily-script-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lily-script-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lily-script-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lily-script-one" + } } diff --git a/packages/limelight/package.json b/packages/limelight/package.json index 815265ff158..d73893c5e8a 100644 --- a/packages/limelight/package.json +++ b/packages/limelight/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/limelight", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/limelight#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/limelight" + } } diff --git a/packages/linden-hill/package.json b/packages/linden-hill/package.json index 74987ef8608..ea5d77d065a 100644 --- a/packages/linden-hill/package.json +++ b/packages/linden-hill/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/linden-hill", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/linden-hill#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/linden-hill" + } } diff --git a/packages/literata/package.json b/packages/literata/package.json index 723434f95da..7de5847cc65 100644 --- a/packages/literata/package.json +++ b/packages/literata/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/literata", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/literata#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/literata" + } } diff --git a/packages/liu-jian-mao-cao/package.json b/packages/liu-jian-mao-cao/package.json index 966631f20fa..b55f3fdacb7 100644 --- a/packages/liu-jian-mao-cao/package.json +++ b/packages/liu-jian-mao-cao/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/liu-jian-mao-cao", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/liu-jian-mao-cao#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/liu-jian-mao-cao" + } } diff --git a/packages/livvic/package.json b/packages/livvic/package.json index ca1ca0f7aa7..73a1d7de075 100644 --- a/packages/livvic/package.json +++ b/packages/livvic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/livvic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/livvic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/livvic" + } } diff --git a/packages/lobster-two/package.json b/packages/lobster-two/package.json index 1b7783708b7..72df03eb283 100644 --- a/packages/lobster-two/package.json +++ b/packages/lobster-two/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lobster-two", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lobster-two#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lobster-two" + } } diff --git a/packages/lobster/package.json b/packages/lobster/package.json index efab4c6b1b4..fb42dba4537 100644 --- a/packages/lobster/package.json +++ b/packages/lobster/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lobster", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lobster#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lobster" + } } diff --git a/packages/londrina-outline/package.json b/packages/londrina-outline/package.json index 21dd322db28..e2a4b1b3e25 100644 --- a/packages/londrina-outline/package.json +++ b/packages/londrina-outline/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/londrina-outline", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/londrina-outline#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/londrina-outline" + } } diff --git a/packages/londrina-shadow/package.json b/packages/londrina-shadow/package.json index 6722de0cdf0..005e04dbc5b 100644 --- a/packages/londrina-shadow/package.json +++ b/packages/londrina-shadow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/londrina-shadow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/londrina-shadow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/londrina-shadow" + } } diff --git a/packages/londrina-sketch/package.json b/packages/londrina-sketch/package.json index 25cf44bcc51..07eaf8f46c4 100644 --- a/packages/londrina-sketch/package.json +++ b/packages/londrina-sketch/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/londrina-sketch", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/londrina-sketch#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/londrina-sketch" + } } diff --git a/packages/londrina-solid/package.json b/packages/londrina-solid/package.json index 859e550e205..eb2523abd9c 100644 --- a/packages/londrina-solid/package.json +++ b/packages/londrina-solid/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/londrina-solid", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/londrina-solid#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/londrina-solid" + } } diff --git a/packages/long-cang/package.json b/packages/long-cang/package.json index 82c8ce74ce5..463361ddd88 100644 --- a/packages/long-cang/package.json +++ b/packages/long-cang/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/long-cang", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/long-cang#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/long-cang" + } } diff --git a/packages/lora/package.json b/packages/lora/package.json index 9ed2b2d3007..6fb87aa7d5b 100644 --- a/packages/lora/package.json +++ b/packages/lora/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lora", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lora#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lora" + } } diff --git a/packages/love-ya-like-a-sister/package.json b/packages/love-ya-like-a-sister/package.json index fd08d71d690..03b04f5ba1c 100644 --- a/packages/love-ya-like-a-sister/package.json +++ b/packages/love-ya-like-a-sister/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/love-ya-like-a-sister", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/love-ya-like-a-sister#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/love-ya-like-a-sister" + } } diff --git a/packages/loved-by-the-king/package.json b/packages/loved-by-the-king/package.json index fe26dd68def..8444bbbe72b 100644 --- a/packages/loved-by-the-king/package.json +++ b/packages/loved-by-the-king/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/loved-by-the-king", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/loved-by-the-king#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/loved-by-the-king" + } } diff --git a/packages/lovers-quarrel/package.json b/packages/lovers-quarrel/package.json index 05b63c085a7..ece1e9fbb8a 100644 --- a/packages/lovers-quarrel/package.json +++ b/packages/lovers-quarrel/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lovers-quarrel", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lovers-quarrel#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lovers-quarrel" + } } diff --git a/packages/luckiest-guy/package.json b/packages/luckiest-guy/package.json index 86ac501cfc0..ee55e79fed4 100644 --- a/packages/luckiest-guy/package.json +++ b/packages/luckiest-guy/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/luckiest-guy", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/luckiest-guy#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/luckiest-guy" + } } diff --git a/packages/lusitana/package.json b/packages/lusitana/package.json index 2a32f46a53f..8ce4c72d84f 100644 --- a/packages/lusitana/package.json +++ b/packages/lusitana/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lusitana", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lusitana#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lusitana" + } } diff --git a/packages/lustria/package.json b/packages/lustria/package.json index f5e6eee1fff..10d7698deb2 100644 --- a/packages/lustria/package.json +++ b/packages/lustria/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/lustria", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/lustria#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/lustria" + } } diff --git a/packages/m-plus-1p/package.json b/packages/m-plus-1p/package.json index 110360da5b4..308d8107eb2 100644 --- a/packages/m-plus-1p/package.json +++ b/packages/m-plus-1p/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/m-plus-1p", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/m-plus-1p#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/m-plus-1p" + } } diff --git a/packages/m-plus-rounded-1c/package.json b/packages/m-plus-rounded-1c/package.json index f41432b3cd3..6e917d13b46 100644 --- a/packages/m-plus-rounded-1c/package.json +++ b/packages/m-plus-rounded-1c/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/m-plus-rounded-1c", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/m-plus-rounded-1c#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/m-plus-rounded-1c" + } } diff --git a/packages/ma-shan-zheng/package.json b/packages/ma-shan-zheng/package.json index 89d7a2ef88b..5d018766a6d 100644 --- a/packages/ma-shan-zheng/package.json +++ b/packages/ma-shan-zheng/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ma-shan-zheng", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ma-shan-zheng#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ma-shan-zheng" + } } diff --git a/packages/macondo-swash-caps/package.json b/packages/macondo-swash-caps/package.json index a4203c27620..2d1ac23ff51 100644 --- a/packages/macondo-swash-caps/package.json +++ b/packages/macondo-swash-caps/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/macondo-swash-caps", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/macondo-swash-caps#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/macondo-swash-caps" + } } diff --git a/packages/macondo/package.json b/packages/macondo/package.json index f3f6a22af25..1114cead345 100644 --- a/packages/macondo/package.json +++ b/packages/macondo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/macondo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/macondo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/macondo" + } } diff --git a/packages/mada/package.json b/packages/mada/package.json index 134bd9a17dc..cde2c833338 100644 --- a/packages/mada/package.json +++ b/packages/mada/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mada", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mada#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mada" + } } diff --git a/packages/magra/package.json b/packages/magra/package.json index 685364e725e..6ca6050dd4a 100644 --- a/packages/magra/package.json +++ b/packages/magra/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/magra", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/magra#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/magra" + } } diff --git a/packages/maiden-orange/package.json b/packages/maiden-orange/package.json index 515d5230a75..8a6108f256f 100644 --- a/packages/maiden-orange/package.json +++ b/packages/maiden-orange/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/maiden-orange", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/maiden-orange#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/maiden-orange" + } } diff --git a/packages/maitree/package.json b/packages/maitree/package.json index 8ba1a547de7..69bca4a65e9 100644 --- a/packages/maitree/package.json +++ b/packages/maitree/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/maitree", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/maitree#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/maitree" + } } diff --git a/packages/major-mono-display/package.json b/packages/major-mono-display/package.json index 7b6c4300fee..8d5d565e0d7 100644 --- a/packages/major-mono-display/package.json +++ b/packages/major-mono-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/major-mono-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/major-mono-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/major-mono-display" + } } diff --git a/packages/mako/package.json b/packages/mako/package.json index 8945ccd96f4..aab97e1a6df 100644 --- a/packages/mako/package.json +++ b/packages/mako/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mako", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mako#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mako" + } } diff --git a/packages/mali/package.json b/packages/mali/package.json index b00f1c9a4fe..c2b692e5f55 100644 --- a/packages/mali/package.json +++ b/packages/mali/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mali", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mali#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mali" + } } diff --git a/packages/mallanna/package.json b/packages/mallanna/package.json index f04976a292b..84853c6586b 100644 --- a/packages/mallanna/package.json +++ b/packages/mallanna/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mallanna", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mallanna#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mallanna" + } } diff --git a/packages/mandali/package.json b/packages/mandali/package.json index 02f82815381..5a1e3985183 100644 --- a/packages/mandali/package.json +++ b/packages/mandali/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mandali", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mandali#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mandali" + } } diff --git a/packages/manjari/package.json b/packages/manjari/package.json index 752ad3fb5b4..a9169e03133 100644 --- a/packages/manjari/package.json +++ b/packages/manjari/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/manjari", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/manjari#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/manjari" + } } diff --git a/packages/manrope/package.json b/packages/manrope/package.json index 9a6540d156b..6761082338d 100644 --- a/packages/manrope/package.json +++ b/packages/manrope/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/manrope", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/manrope#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/manrope" + } } diff --git a/packages/mansalva/package.json b/packages/mansalva/package.json index 56ed7f2af9d..7a18fefa67e 100644 --- a/packages/mansalva/package.json +++ b/packages/mansalva/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mansalva", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mansalva#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mansalva" + } } diff --git a/packages/manuale/package.json b/packages/manuale/package.json index 5991a8eeee4..98e1ac2cfb5 100644 --- a/packages/manuale/package.json +++ b/packages/manuale/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/manuale", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/manuale#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/manuale" + } } diff --git a/packages/marcellus-sc/package.json b/packages/marcellus-sc/package.json index 43d7683094c..25314c75324 100644 --- a/packages/marcellus-sc/package.json +++ b/packages/marcellus-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/marcellus-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/marcellus-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/marcellus-sc" + } } diff --git a/packages/marcellus/package.json b/packages/marcellus/package.json index aecf8544242..0dca3a58d26 100644 --- a/packages/marcellus/package.json +++ b/packages/marcellus/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/marcellus", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/marcellus#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/marcellus" + } } diff --git a/packages/marck-script/package.json b/packages/marck-script/package.json index 9591465c432..f5842895b92 100644 --- a/packages/marck-script/package.json +++ b/packages/marck-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/marck-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/marck-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/marck-script" + } } diff --git a/packages/margarine/package.json b/packages/margarine/package.json index 6c87588a6df..83d6883a5a1 100644 --- a/packages/margarine/package.json +++ b/packages/margarine/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/margarine", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/margarine#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/margarine" + } } diff --git a/packages/markazi-text/package.json b/packages/markazi-text/package.json index 013aa310c1a..baf4b3146e9 100644 --- a/packages/markazi-text/package.json +++ b/packages/markazi-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/markazi-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/markazi-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/markazi-text" + } } diff --git a/packages/marko-one/package.json b/packages/marko-one/package.json index 8b52525cf32..f334faaf4e2 100644 --- a/packages/marko-one/package.json +++ b/packages/marko-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/marko-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/marko-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/marko-one" + } } diff --git a/packages/marmelad/package.json b/packages/marmelad/package.json index d31f5c35760..886ebc4763a 100644 --- a/packages/marmelad/package.json +++ b/packages/marmelad/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/marmelad", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/marmelad#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/marmelad" + } } diff --git a/packages/martel-sans/package.json b/packages/martel-sans/package.json index 945e2c00c74..573025e09ed 100644 --- a/packages/martel-sans/package.json +++ b/packages/martel-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/martel-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/martel-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/martel-sans" + } } diff --git a/packages/martel/package.json b/packages/martel/package.json index 18788fced4c..496fbfba398 100644 --- a/packages/martel/package.json +++ b/packages/martel/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/martel", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/martel#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/martel" + } } diff --git a/packages/marvel/package.json b/packages/marvel/package.json index b5c72324c90..c920106e6f4 100644 --- a/packages/marvel/package.json +++ b/packages/marvel/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/marvel", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/marvel#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/marvel" + } } diff --git a/packages/mate-sc/package.json b/packages/mate-sc/package.json index 3c974c73f80..bdcbf93d381 100644 --- a/packages/mate-sc/package.json +++ b/packages/mate-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mate-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mate-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mate-sc" + } } diff --git a/packages/mate/package.json b/packages/mate/package.json index a155acfb558..76d03711a24 100644 --- a/packages/mate/package.json +++ b/packages/mate/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mate", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mate#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mate" + } } diff --git a/packages/maven-pro/package.json b/packages/maven-pro/package.json index f45cea9c8f8..6b47205dea3 100644 --- a/packages/maven-pro/package.json +++ b/packages/maven-pro/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/maven-pro", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/maven-pro#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/maven-pro" + } } diff --git a/packages/mclaren/package.json b/packages/mclaren/package.json index 7833e6d2f42..e6ecfb78504 100644 --- a/packages/mclaren/package.json +++ b/packages/mclaren/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mclaren", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mclaren#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mclaren" + } } diff --git a/packages/meddon/package.json b/packages/meddon/package.json index 3e48e5abd9d..bf6b8e77a58 100644 --- a/packages/meddon/package.json +++ b/packages/meddon/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/meddon", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/meddon#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/meddon" + } } diff --git a/packages/medievalsharp/package.json b/packages/medievalsharp/package.json index 4f88daec8ae..0fda05e490c 100644 --- a/packages/medievalsharp/package.json +++ b/packages/medievalsharp/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/medievalsharp", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/medievalsharp#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/medievalsharp" + } } diff --git a/packages/medula-one/package.json b/packages/medula-one/package.json index e2c0e7393e4..18c30ca2638 100644 --- a/packages/medula-one/package.json +++ b/packages/medula-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/medula-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/medula-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/medula-one" + } } diff --git a/packages/meera-inimai/package.json b/packages/meera-inimai/package.json index 2a097355023..571f079d59b 100644 --- a/packages/meera-inimai/package.json +++ b/packages/meera-inimai/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/meera-inimai", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/meera-inimai#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/meera-inimai" + } } diff --git a/packages/megrim/package.json b/packages/megrim/package.json index 548f7e5ed14..51dc165a92f 100644 --- a/packages/megrim/package.json +++ b/packages/megrim/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/megrim", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/megrim#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/megrim" + } } diff --git a/packages/meie-script/package.json b/packages/meie-script/package.json index 064ef1e716a..0027f44174e 100644 --- a/packages/meie-script/package.json +++ b/packages/meie-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/meie-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/meie-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/meie-script" + } } diff --git a/packages/merienda-one/package.json b/packages/merienda-one/package.json index 2329d4ba9eb..279c3c5a14e 100644 --- a/packages/merienda-one/package.json +++ b/packages/merienda-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/merienda-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/merienda-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/merienda-one" + } } diff --git a/packages/merienda/package.json b/packages/merienda/package.json index a0f026aceb4..6560557d577 100644 --- a/packages/merienda/package.json +++ b/packages/merienda/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/merienda", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/merienda#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/merienda" + } } diff --git a/packages/merriweather-sans/package.json b/packages/merriweather-sans/package.json index 83c6d662067..a6ffb4ba830 100644 --- a/packages/merriweather-sans/package.json +++ b/packages/merriweather-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/merriweather-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/merriweather-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/merriweather-sans" + } } diff --git a/packages/merriweather/package.json b/packages/merriweather/package.json index dc4857da6e9..856c2db89dd 100644 --- a/packages/merriweather/package.json +++ b/packages/merriweather/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/merriweather", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/merriweather#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/merriweather" + } } diff --git a/packages/metal-mania/package.json b/packages/metal-mania/package.json index 8fe0b6793a9..4167b381b0d 100644 --- a/packages/metal-mania/package.json +++ b/packages/metal-mania/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/metal-mania", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/metal-mania#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/metal-mania" + } } diff --git a/packages/metal/package.json b/packages/metal/package.json index 75f018d740d..cb370e5c61b 100644 --- a/packages/metal/package.json +++ b/packages/metal/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/metal", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/metal#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/metal" + } } diff --git a/packages/metamorphous/package.json b/packages/metamorphous/package.json index 33888dc0b47..c8535477691 100644 --- a/packages/metamorphous/package.json +++ b/packages/metamorphous/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/metamorphous", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/metamorphous#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/metamorphous" + } } diff --git a/packages/metrophobic/package.json b/packages/metrophobic/package.json index 73335d385c3..ec45f444d62 100644 --- a/packages/metrophobic/package.json +++ b/packages/metrophobic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/metrophobic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/metrophobic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/metrophobic" + } } diff --git a/packages/michroma/package.json b/packages/michroma/package.json index e3789426e00..916463ca9fa 100644 --- a/packages/michroma/package.json +++ b/packages/michroma/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/michroma", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/michroma#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/michroma" + } } diff --git a/packages/milonga/package.json b/packages/milonga/package.json index 2ea2e20ffd2..1b2ca820033 100644 --- a/packages/milonga/package.json +++ b/packages/milonga/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/milonga", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/milonga#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/milonga" + } } diff --git a/packages/miltonian-tattoo/package.json b/packages/miltonian-tattoo/package.json index e1cc56a8454..49bd457658b 100644 --- a/packages/miltonian-tattoo/package.json +++ b/packages/miltonian-tattoo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/miltonian-tattoo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/miltonian-tattoo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/miltonian-tattoo" + } } diff --git a/packages/miltonian/package.json b/packages/miltonian/package.json index 5b70569ed4f..627f1f4228b 100644 --- a/packages/miltonian/package.json +++ b/packages/miltonian/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/miltonian", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/miltonian#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/miltonian" + } } diff --git a/packages/mina/package.json b/packages/mina/package.json index bb5892747bf..0b718d49bda 100644 --- a/packages/mina/package.json +++ b/packages/mina/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mina", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mina#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mina" + } } diff --git a/packages/miniver/package.json b/packages/miniver/package.json index 079b93875c6..c7dd58a12e0 100644 --- a/packages/miniver/package.json +++ b/packages/miniver/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/miniver", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/miniver#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/miniver" + } } diff --git a/packages/miriam-libre/package.json b/packages/miriam-libre/package.json index 935a7dce78c..a9620d7be7d 100644 --- a/packages/miriam-libre/package.json +++ b/packages/miriam-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/miriam-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/miriam-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/miriam-libre" + } } diff --git a/packages/mirza/package.json b/packages/mirza/package.json index 4795ba1d4f3..acf558c343e 100644 --- a/packages/mirza/package.json +++ b/packages/mirza/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mirza", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mirza#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mirza" + } } diff --git a/packages/miss-fajardose/package.json b/packages/miss-fajardose/package.json index ac98bd2a285..301f1db9163 100644 --- a/packages/miss-fajardose/package.json +++ b/packages/miss-fajardose/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/miss-fajardose", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/miss-fajardose#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/miss-fajardose" + } } diff --git a/packages/mitr/package.json b/packages/mitr/package.json index ac965c19c91..e34d98c2cee 100644 --- a/packages/mitr/package.json +++ b/packages/mitr/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mitr", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mitr#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mitr" + } } diff --git a/packages/modak/package.json b/packages/modak/package.json index e79c00828c5..3d4bb8cba45 100644 --- a/packages/modak/package.json +++ b/packages/modak/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/modak", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/modak#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/modak" + } } diff --git a/packages/modern-antiqua/package.json b/packages/modern-antiqua/package.json index 3aeffa8699b..177f1476778 100644 --- a/packages/modern-antiqua/package.json +++ b/packages/modern-antiqua/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/modern-antiqua", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/modern-antiqua#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/modern-antiqua" + } } diff --git a/packages/mogra/package.json b/packages/mogra/package.json index b12d5f0f01d..6d45c7c8c4e 100644 --- a/packages/mogra/package.json +++ b/packages/mogra/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mogra", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mogra#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mogra" + } } diff --git a/packages/molengo/package.json b/packages/molengo/package.json index 4a0f3636ce6..60209616679 100644 --- a/packages/molengo/package.json +++ b/packages/molengo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/molengo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/molengo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/molengo" + } } diff --git a/packages/molle/package.json b/packages/molle/package.json index 7be1d0e0919..b6ca32ea06f 100644 --- a/packages/molle/package.json +++ b/packages/molle/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/molle", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/molle#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/molle" + } } diff --git a/packages/monda/package.json b/packages/monda/package.json index 8985a29e6ed..9367807f72b 100644 --- a/packages/monda/package.json +++ b/packages/monda/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/monda", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/monda#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/monda" + } } diff --git a/packages/monofett/package.json b/packages/monofett/package.json index 46417586edc..59c0b5026c2 100644 --- a/packages/monofett/package.json +++ b/packages/monofett/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/monofett", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/monofett#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/monofett" + } } diff --git a/packages/monoton/package.json b/packages/monoton/package.json index 73b74173ce6..667fdd2a32d 100644 --- a/packages/monoton/package.json +++ b/packages/monoton/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/monoton", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/monoton#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/monoton" + } } diff --git a/packages/monsieur-la-doulaise/package.json b/packages/monsieur-la-doulaise/package.json index 2aa6ce5d1ac..88dfa8b7afe 100644 --- a/packages/monsieur-la-doulaise/package.json +++ b/packages/monsieur-la-doulaise/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/monsieur-la-doulaise", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/monsieur-la-doulaise#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/monsieur-la-doulaise" + } } diff --git a/packages/montaga/package.json b/packages/montaga/package.json index b09dcd567be..99c313798ed 100644 --- a/packages/montaga/package.json +++ b/packages/montaga/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/montaga", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/montaga#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/montaga" + } } diff --git a/packages/montez/package.json b/packages/montez/package.json index c13d6be9e21..edcfd32d940 100644 --- a/packages/montez/package.json +++ b/packages/montez/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/montez", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/montez#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/montez" + } } diff --git a/packages/montserrat-alternates/package.json b/packages/montserrat-alternates/package.json index a7d28c034b3..84557342527 100644 --- a/packages/montserrat-alternates/package.json +++ b/packages/montserrat-alternates/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/montserrat-alternates", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/montserrat-alternates#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/montserrat-alternates" + } } diff --git a/packages/montserrat-subrayada/package.json b/packages/montserrat-subrayada/package.json index b86c0905291..84dc9f6b6b1 100644 --- a/packages/montserrat-subrayada/package.json +++ b/packages/montserrat-subrayada/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/montserrat-subrayada", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/montserrat-subrayada#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/montserrat-subrayada" + } } diff --git a/packages/montserrat/package.json b/packages/montserrat/package.json index ab7dcb1b9a2..255bb0a86a1 100644 --- a/packages/montserrat/package.json +++ b/packages/montserrat/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/montserrat", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/montserrat#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/montserrat" + } } diff --git a/packages/moul/package.json b/packages/moul/package.json index c5ea7393dd1..8d28a19b03b 100644 --- a/packages/moul/package.json +++ b/packages/moul/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/moul", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/moul#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/moul" + } } diff --git a/packages/moulpali/package.json b/packages/moulpali/package.json index 501f0f1a905..ed9d389c36a 100644 --- a/packages/moulpali/package.json +++ b/packages/moulpali/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/moulpali", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/moulpali#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/moulpali" + } } diff --git a/packages/mountains-of-christmas/package.json b/packages/mountains-of-christmas/package.json index f0f696754aa..6916965312a 100644 --- a/packages/mountains-of-christmas/package.json +++ b/packages/mountains-of-christmas/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mountains-of-christmas", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mountains-of-christmas#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mountains-of-christmas" + } } diff --git a/packages/mouse-memoirs/package.json b/packages/mouse-memoirs/package.json index 65d34923f1e..6149f25be2e 100644 --- a/packages/mouse-memoirs/package.json +++ b/packages/mouse-memoirs/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mouse-memoirs", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mouse-memoirs#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mouse-memoirs" + } } diff --git a/packages/mr-bedfort/package.json b/packages/mr-bedfort/package.json index 94e021a4b1f..8ece2ca84ab 100644 --- a/packages/mr-bedfort/package.json +++ b/packages/mr-bedfort/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mr-bedfort", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mr-bedfort#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mr-bedfort" + } } diff --git a/packages/mr-dafoe/package.json b/packages/mr-dafoe/package.json index f23e9a09e44..0f33edf1fd8 100644 --- a/packages/mr-dafoe/package.json +++ b/packages/mr-dafoe/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mr-dafoe", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mr-dafoe#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mr-dafoe" + } } diff --git a/packages/mr-de-haviland/package.json b/packages/mr-de-haviland/package.json index 533e9bb22b0..7e1fb2d9c70 100644 --- a/packages/mr-de-haviland/package.json +++ b/packages/mr-de-haviland/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mr-de-haviland", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mr-de-haviland#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mr-de-haviland" + } } diff --git a/packages/mrs-saint-delafield/package.json b/packages/mrs-saint-delafield/package.json index 34c9e7b9305..41ae1bc458b 100644 --- a/packages/mrs-saint-delafield/package.json +++ b/packages/mrs-saint-delafield/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mrs-saint-delafield", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mrs-saint-delafield#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mrs-saint-delafield" + } } diff --git a/packages/mrs-sheppards/package.json b/packages/mrs-sheppards/package.json index 981c749a837..e5a4fb67331 100644 --- a/packages/mrs-sheppards/package.json +++ b/packages/mrs-sheppards/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mrs-sheppards", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mrs-sheppards#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mrs-sheppards" + } } diff --git a/packages/mukta-mahee/package.json b/packages/mukta-mahee/package.json index 9adc94240ab..67e51d95f7d 100644 --- a/packages/mukta-mahee/package.json +++ b/packages/mukta-mahee/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mukta-mahee", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mukta-mahee#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mukta-mahee" + } } diff --git a/packages/mukta-malar/package.json b/packages/mukta-malar/package.json index 0241d27fc68..a5bfd56718b 100644 --- a/packages/mukta-malar/package.json +++ b/packages/mukta-malar/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mukta-malar", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mukta-malar#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mukta-malar" + } } diff --git a/packages/mukta-vaani/package.json b/packages/mukta-vaani/package.json index cb89d99cb00..b0638781e23 100644 --- a/packages/mukta-vaani/package.json +++ b/packages/mukta-vaani/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mukta-vaani", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mukta-vaani#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mukta-vaani" + } } diff --git a/packages/mukta/package.json b/packages/mukta/package.json index 74216e554ed..c86e031a44f 100644 --- a/packages/mukta/package.json +++ b/packages/mukta/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mukta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mukta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mukta" + } } diff --git a/packages/muli/package.json b/packages/muli/package.json index b645bc5cf45..a11b4005a30 100644 --- a/packages/muli/package.json +++ b/packages/muli/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/muli", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/muli#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/muli" + } } diff --git a/packages/mulish/package.json b/packages/mulish/package.json index 9cc954bf09d..50c5d20c9ae 100644 --- a/packages/mulish/package.json +++ b/packages/mulish/package.json @@ -16,6 +16,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mulish", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mulish#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mulish" + } } diff --git a/packages/museomoderno/package.json b/packages/museomoderno/package.json index f677af2912c..e19d8308d43 100644 --- a/packages/museomoderno/package.json +++ b/packages/museomoderno/package.json @@ -16,6 +16,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/museomoderno", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/museomoderno#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/museomoderno" + } } diff --git a/packages/mystery-quest/package.json b/packages/mystery-quest/package.json index d155bfb1c3d..6c24916665d 100644 --- a/packages/mystery-quest/package.json +++ b/packages/mystery-quest/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/mystery-quest", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/mystery-quest#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/mystery-quest" + } } diff --git a/packages/nanum-brush-script/package.json b/packages/nanum-brush-script/package.json index de0b959032d..3200f503dc3 100644 --- a/packages/nanum-brush-script/package.json +++ b/packages/nanum-brush-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nanum-brush-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nanum-brush-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nanum-brush-script" + } } diff --git a/packages/nanum-gothic-coding/package.json b/packages/nanum-gothic-coding/package.json index 90c07931d56..8f44dc71053 100644 --- a/packages/nanum-gothic-coding/package.json +++ b/packages/nanum-gothic-coding/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nanum-gothic-coding", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nanum-gothic-coding#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nanum-gothic-coding" + } } diff --git a/packages/nanum-gothic/package.json b/packages/nanum-gothic/package.json index a488a761b36..a7548566b61 100644 --- a/packages/nanum-gothic/package.json +++ b/packages/nanum-gothic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nanum-gothic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nanum-gothic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nanum-gothic" + } } diff --git a/packages/nanum-myeongjo/package.json b/packages/nanum-myeongjo/package.json index 737948e5adf..c7aa9e0c1bb 100644 --- a/packages/nanum-myeongjo/package.json +++ b/packages/nanum-myeongjo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nanum-myeongjo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nanum-myeongjo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nanum-myeongjo" + } } diff --git a/packages/nanum-pen-script/package.json b/packages/nanum-pen-script/package.json index 47808ba28ef..045372ce847 100644 --- a/packages/nanum-pen-script/package.json +++ b/packages/nanum-pen-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nanum-pen-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nanum-pen-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nanum-pen-script" + } } diff --git a/packages/neucha/package.json b/packages/neucha/package.json index 8da9f72436b..22cd84ce028 100644 --- a/packages/neucha/package.json +++ b/packages/neucha/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/neucha", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/neucha#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/neucha" + } } diff --git a/packages/neuton/package.json b/packages/neuton/package.json index 0f708d394b9..26c35ef2dd1 100644 --- a/packages/neuton/package.json +++ b/packages/neuton/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/neuton", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/neuton#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/neuton" + } } diff --git a/packages/new-rocker/package.json b/packages/new-rocker/package.json index 5f23ed295b9..0b61132c356 100644 --- a/packages/new-rocker/package.json +++ b/packages/new-rocker/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/new-rocker", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/new-rocker#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/new-rocker" + } } diff --git a/packages/news-cycle/package.json b/packages/news-cycle/package.json index c4ffec814c6..23eeeb5d2dd 100644 --- a/packages/news-cycle/package.json +++ b/packages/news-cycle/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/news-cycle", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/news-cycle#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/news-cycle" + } } diff --git a/packages/niconne/package.json b/packages/niconne/package.json index e53e05b278a..3f2533b5ae3 100644 --- a/packages/niconne/package.json +++ b/packages/niconne/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/niconne", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/niconne#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/niconne" + } } diff --git a/packages/niramit/package.json b/packages/niramit/package.json index f7e05786873..05939631390 100644 --- a/packages/niramit/package.json +++ b/packages/niramit/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/niramit", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/niramit#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/niramit" + } } diff --git a/packages/nixie-one/package.json b/packages/nixie-one/package.json index f8be166db25..ffb277bda0d 100644 --- a/packages/nixie-one/package.json +++ b/packages/nixie-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nixie-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nixie-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nixie-one" + } } diff --git a/packages/nobile/package.json b/packages/nobile/package.json index d922308dc67..0e510ae839d 100644 --- a/packages/nobile/package.json +++ b/packages/nobile/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nobile", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nobile#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nobile" + } } diff --git a/packages/nokora/package.json b/packages/nokora/package.json index 3ce776f8e49..7e056224b89 100644 --- a/packages/nokora/package.json +++ b/packages/nokora/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nokora", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nokora#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nokora" + } } diff --git a/packages/norican/package.json b/packages/norican/package.json index ab692df1c4b..3d9fc6045b8 100644 --- a/packages/norican/package.json +++ b/packages/norican/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/norican", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/norican#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/norican" + } } diff --git a/packages/nosifer/package.json b/packages/nosifer/package.json index 4e119272964..acfc79213a3 100644 --- a/packages/nosifer/package.json +++ b/packages/nosifer/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nosifer", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nosifer#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nosifer" + } } diff --git a/packages/notable/package.json b/packages/notable/package.json index 2549e1a1850..5ee0266bb3b 100644 --- a/packages/notable/package.json +++ b/packages/notable/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/notable", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/notable#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/notable" + } } diff --git a/packages/nothing-you-could-do/package.json b/packages/nothing-you-could-do/package.json index 859b1e20203..79d9ce8e181 100644 --- a/packages/nothing-you-could-do/package.json +++ b/packages/nothing-you-could-do/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nothing-you-could-do", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nothing-you-could-do#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nothing-you-could-do" + } } diff --git a/packages/noticia-text/package.json b/packages/noticia-text/package.json index b89274c2039..860678e445a 100644 --- a/packages/noticia-text/package.json +++ b/packages/noticia-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noticia-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noticia-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noticia-text" + } } diff --git a/packages/noto-sans-hk/package.json b/packages/noto-sans-hk/package.json index 1bfef8e5d1b..31b96d5bd67 100644 --- a/packages/noto-sans-hk/package.json +++ b/packages/noto-sans-hk/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-sans-hk", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-sans-hk#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-sans-hk" + } } diff --git a/packages/noto-sans-jp/package.json b/packages/noto-sans-jp/package.json index 9858addb6b5..179e1bc545c 100644 --- a/packages/noto-sans-jp/package.json +++ b/packages/noto-sans-jp/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-sans-jp", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-sans-jp#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-sans-jp" + } } diff --git a/packages/noto-sans-kr/package.json b/packages/noto-sans-kr/package.json index a127d24f57f..8dfc22a563b 100644 --- a/packages/noto-sans-kr/package.json +++ b/packages/noto-sans-kr/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-sans-kr", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-sans-kr#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-sans-kr" + } } diff --git a/packages/noto-sans-sc/package.json b/packages/noto-sans-sc/package.json index 239679504e2..72c3fcbc580 100644 --- a/packages/noto-sans-sc/package.json +++ b/packages/noto-sans-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-sans-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-sans-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-sans-sc" + } } diff --git a/packages/noto-sans-tc/package.json b/packages/noto-sans-tc/package.json index 8accb9beb4f..ff9a6bf940a 100644 --- a/packages/noto-sans-tc/package.json +++ b/packages/noto-sans-tc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-sans-tc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-sans-tc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-sans-tc" + } } diff --git a/packages/noto-sans/package.json b/packages/noto-sans/package.json index c0ccc7376d3..f32c83b09a1 100644 --- a/packages/noto-sans/package.json +++ b/packages/noto-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-sans" + } } diff --git a/packages/noto-serif-jp/package.json b/packages/noto-serif-jp/package.json index 34963bcb760..69b7c9b1b9d 100644 --- a/packages/noto-serif-jp/package.json +++ b/packages/noto-serif-jp/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-serif-jp", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-serif-jp#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-serif-jp" + } } diff --git a/packages/noto-serif-kr/package.json b/packages/noto-serif-kr/package.json index 7a8b4bfc6c6..5af126173bf 100644 --- a/packages/noto-serif-kr/package.json +++ b/packages/noto-serif-kr/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-serif-kr", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-serif-kr#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-serif-kr" + } } diff --git a/packages/noto-serif-sc/package.json b/packages/noto-serif-sc/package.json index 03369b3c5d1..d931747e1d8 100644 --- a/packages/noto-serif-sc/package.json +++ b/packages/noto-serif-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-serif-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-serif-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-serif-sc" + } } diff --git a/packages/noto-serif-tc/package.json b/packages/noto-serif-tc/package.json index d45f0374700..8741248f33b 100644 --- a/packages/noto-serif-tc/package.json +++ b/packages/noto-serif-tc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-serif-tc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-serif-tc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-serif-tc" + } } diff --git a/packages/noto-serif/package.json b/packages/noto-serif/package.json index 0a713fcd027..8e95907105e 100644 --- a/packages/noto-serif/package.json +++ b/packages/noto-serif/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/noto-serif", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/noto-serif#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/noto-serif" + } } diff --git a/packages/nova-cut/package.json b/packages/nova-cut/package.json index fe51db11c86..1e19e3a2b5c 100644 --- a/packages/nova-cut/package.json +++ b/packages/nova-cut/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nova-cut", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nova-cut#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nova-cut" + } } diff --git a/packages/nova-flat/package.json b/packages/nova-flat/package.json index c505a5a06b5..a7624b19e8f 100644 --- a/packages/nova-flat/package.json +++ b/packages/nova-flat/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nova-flat", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nova-flat#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nova-flat" + } } diff --git a/packages/nova-mono/package.json b/packages/nova-mono/package.json index d9210dc03ca..6d438f55be1 100644 --- a/packages/nova-mono/package.json +++ b/packages/nova-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nova-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nova-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nova-mono" + } } diff --git a/packages/nova-oval/package.json b/packages/nova-oval/package.json index 01c90457ec3..ce39c8912e8 100644 --- a/packages/nova-oval/package.json +++ b/packages/nova-oval/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nova-oval", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nova-oval#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nova-oval" + } } diff --git a/packages/nova-round/package.json b/packages/nova-round/package.json index da94f4d0668..00485047781 100644 --- a/packages/nova-round/package.json +++ b/packages/nova-round/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nova-round", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nova-round#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nova-round" + } } diff --git a/packages/nova-script/package.json b/packages/nova-script/package.json index e242f5fecd0..837513bd80e 100644 --- a/packages/nova-script/package.json +++ b/packages/nova-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nova-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nova-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nova-script" + } } diff --git a/packages/nova-slim/package.json b/packages/nova-slim/package.json index 573c9c56d65..c6487d9991d 100644 --- a/packages/nova-slim/package.json +++ b/packages/nova-slim/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nova-slim", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nova-slim#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nova-slim" + } } diff --git a/packages/nova-square/package.json b/packages/nova-square/package.json index 382fda41086..27f44fd8517 100644 --- a/packages/nova-square/package.json +++ b/packages/nova-square/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nova-square", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nova-square#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nova-square" + } } diff --git a/packages/ntr/package.json b/packages/ntr/package.json index 20255a2f850..5e3ae750b1b 100644 --- a/packages/ntr/package.json +++ b/packages/ntr/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ntr", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ntr#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ntr" + } } diff --git a/packages/numans/package.json b/packages/numans/package.json index 8522f4b9b1c..696ca25414e 100644 --- a/packages/numans/package.json +++ b/packages/numans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/numans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/numans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/numans" + } } diff --git a/packages/nunito-sans/package.json b/packages/nunito-sans/package.json index 4f62a42717f..d1763e3df2b 100644 --- a/packages/nunito-sans/package.json +++ b/packages/nunito-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nunito-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nunito-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nunito-sans" + } } diff --git a/packages/nunito/package.json b/packages/nunito/package.json index c073516cf43..1a50e4422aa 100644 --- a/packages/nunito/package.json +++ b/packages/nunito/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/nunito", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/nunito#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/nunito" + } } diff --git a/packages/odibee-sans/package.json b/packages/odibee-sans/package.json index a6ea77bfe6a..aa8f0e5a9e9 100644 --- a/packages/odibee-sans/package.json +++ b/packages/odibee-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/odibee-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/odibee-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/odibee-sans" + } } diff --git a/packages/odor-mean-chey/package.json b/packages/odor-mean-chey/package.json index 4500354d62e..1f80e9c573f 100644 --- a/packages/odor-mean-chey/package.json +++ b/packages/odor-mean-chey/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/odor-mean-chey", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/odor-mean-chey#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/odor-mean-chey" + } } diff --git a/packages/offside/package.json b/packages/offside/package.json index 9f7c43e85aa..88f56276328 100644 --- a/packages/offside/package.json +++ b/packages/offside/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/offside", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/offside#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/offside" + } } diff --git a/packages/old-standard-tt/package.json b/packages/old-standard-tt/package.json index 1e9943f8aa2..991930bf5af 100644 --- a/packages/old-standard-tt/package.json +++ b/packages/old-standard-tt/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/old-standard-tt", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/old-standard-tt#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/old-standard-tt" + } } diff --git a/packages/oldenburg/package.json b/packages/oldenburg/package.json index c80b1678316..f31fd21c10c 100644 --- a/packages/oldenburg/package.json +++ b/packages/oldenburg/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/oldenburg", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/oldenburg#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/oldenburg" + } } diff --git a/packages/oleo-script-swash-caps/package.json b/packages/oleo-script-swash-caps/package.json index 35a5a9df1c9..227c0d1d24e 100644 --- a/packages/oleo-script-swash-caps/package.json +++ b/packages/oleo-script-swash-caps/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/oleo-script-swash-caps", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/oleo-script-swash-caps#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/oleo-script-swash-caps" + } } diff --git a/packages/oleo-script/package.json b/packages/oleo-script/package.json index 9d588866141..da55568034b 100644 --- a/packages/oleo-script/package.json +++ b/packages/oleo-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/oleo-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/oleo-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/oleo-script" + } } diff --git a/packages/open-sans-condensed/package.json b/packages/open-sans-condensed/package.json index 800b4fb125b..4275406fb12 100644 --- a/packages/open-sans-condensed/package.json +++ b/packages/open-sans-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/open-sans-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/open-sans-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/open-sans-condensed" + } } diff --git a/packages/open-sans/package.json b/packages/open-sans/package.json index 2c8d95db9a2..d5e020939ac 100644 --- a/packages/open-sans/package.json +++ b/packages/open-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/open-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/open-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/open-sans" + } } diff --git a/packages/oranienbaum/package.json b/packages/oranienbaum/package.json index 1a9d9314485..d6f6a0189cf 100644 --- a/packages/oranienbaum/package.json +++ b/packages/oranienbaum/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/oranienbaum", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/oranienbaum#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/oranienbaum" + } } diff --git a/packages/orbitron/package.json b/packages/orbitron/package.json index 5fbbf4fdddf..993f460846f 100644 --- a/packages/orbitron/package.json +++ b/packages/orbitron/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/orbitron", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/orbitron#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/orbitron" + } } diff --git a/packages/oregano/package.json b/packages/oregano/package.json index 26a28fa14cb..15e1d964b45 100644 --- a/packages/oregano/package.json +++ b/packages/oregano/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/oregano", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/oregano#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/oregano" + } } diff --git a/packages/orienta/package.json b/packages/orienta/package.json index 5f7229ce94f..abedeee84d9 100644 --- a/packages/orienta/package.json +++ b/packages/orienta/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/orienta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/orienta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/orienta" + } } diff --git a/packages/original-surfer/package.json b/packages/original-surfer/package.json index 2e2a748c995..a90caa34642 100644 --- a/packages/original-surfer/package.json +++ b/packages/original-surfer/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/original-surfer", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/original-surfer#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/original-surfer" + } } diff --git a/packages/ostrich-sans-dashed/README.md b/packages/ostrich-sans-dashed/README.md index 2f87a8ebae5..c88f84e804f 100644 --- a/packages/ostrich-sans-dashed/README.md +++ b/packages/ostrich-sans-dashed/README.md @@ -1,4 +1,5 @@ # Fontsource Ostrich Sans Dashed + [![npm version](https://badge.fury.io/js/fontsource-ostrich-sans-dashed.svg)](https://www.npmjs.com/package/fontsource-ostrich-sans-dashed) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-ostrich-sans-dashed)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-ostrich-sans-dashed)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Ostrich Sans Dashed” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[500]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/ostrich-sans) and [License](https:/ Font version (provided by source): `v13`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/ostrich-sans-dashed/metadata.json b/packages/ostrich-sans-dashed/metadata.json index c91bc50fb35..4787a916f02 100644 --- a/packages/ostrich-sans-dashed/metadata.json +++ b/packages/ostrich-sans-dashed/metadata.json @@ -1 +1,13 @@ -{"fontId":"ostrich-sans-dashed","fontName":"Ostrich Sans Dashed","subsets":["latin"],"weights":["500"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v13","source":"https://github.com/theleagueof/ostrich-sans","license":"https://github.com/theleagueof/ostrich-sans/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "ostrich-sans-dashed", + "fontName": "Ostrich Sans Dashed", + "subsets": ["latin"], + "weights": ["500"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v13", + "source": "https://github.com/theleagueof/ostrich-sans", + "license": "https://github.com/theleagueof/ostrich-sans/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/ostrich-sans-dashed/package.json b/packages/ostrich-sans-dashed/package.json index 3d5f0edb8eb..fdc2014da03 100644 --- a/packages/ostrich-sans-dashed/package.json +++ b/packages/ostrich-sans-dashed/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ostrich-sans-dashed#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/ostrich-sans-dashed" } } diff --git a/packages/ostrich-sans-inline/README.md b/packages/ostrich-sans-inline/README.md index 2687f07be25..47ffe305720 100644 --- a/packages/ostrich-sans-inline/README.md +++ b/packages/ostrich-sans-inline/README.md @@ -1,4 +1,5 @@ # Fontsource Ostrich Sans Inline + [![npm version](https://badge.fury.io/js/fontsource-ostrich-sans-inline.svg)](https://www.npmjs.com/package/fontsource-ostrich-sans-inline) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-ostrich-sans-inline)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-ostrich-sans-inline)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Ostrich Sans Inline” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400]` - Styles: `[italic,normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/ostrich-sans) and [License](https:/ Font version (provided by source): `v13`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/ostrich-sans-inline/metadata.json b/packages/ostrich-sans-inline/metadata.json index 78f52d29509..d70ac2a08c5 100644 --- a/packages/ostrich-sans-inline/metadata.json +++ b/packages/ostrich-sans-inline/metadata.json @@ -1 +1,13 @@ -{"fontId":"ostrich-sans-inline","fontName":"Ostrich Sans Inline","subsets":["latin"],"weights":["400"],"styles":["italic","normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v13","source":"https://github.com/theleagueof/ostrich-sans","license":"https://github.com/theleagueof/ostrich-sans/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "ostrich-sans-inline", + "fontName": "Ostrich Sans Inline", + "subsets": ["latin"], + "weights": ["400"], + "styles": ["italic", "normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v13", + "source": "https://github.com/theleagueof/ostrich-sans", + "license": "https://github.com/theleagueof/ostrich-sans/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/ostrich-sans-inline/package.json b/packages/ostrich-sans-inline/package.json index 279cd4afe39..b048f09c016 100644 --- a/packages/ostrich-sans-inline/package.json +++ b/packages/ostrich-sans-inline/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ostrich-sans-inline#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/ostrich-sans-inline" } } diff --git a/packages/ostrich-sans-rounded/README.md b/packages/ostrich-sans-rounded/README.md index b2b9c0dc76c..697b5998caa 100644 --- a/packages/ostrich-sans-rounded/README.md +++ b/packages/ostrich-sans-rounded/README.md @@ -1,4 +1,5 @@ # Fontsource Ostrich Sans Rounded + [![npm version](https://badge.fury.io/js/fontsource-ostrich-sans-rounded.svg)](https://www.npmjs.com/package/fontsource-ostrich-sans-rounded) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-ostrich-sans-rounded)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-ostrich-sans-rounded)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Ostrich Sans Rounded” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[500]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/ostrich-sans) and [License](https:/ Font version (provided by source): `v13`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/ostrich-sans-rounded/metadata.json b/packages/ostrich-sans-rounded/metadata.json index 18b29baecc1..a0e10a1e2c3 100644 --- a/packages/ostrich-sans-rounded/metadata.json +++ b/packages/ostrich-sans-rounded/metadata.json @@ -1 +1,13 @@ -{"fontId":"ostrich-sans-rounded","fontName":"Ostrich Sans Rounded","subsets":["latin"],"weights":["500"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v13","source":"https://github.com/theleagueof/ostrich-sans","license":"https://github.com/theleagueof/ostrich-sans/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "ostrich-sans-rounded", + "fontName": "Ostrich Sans Rounded", + "subsets": ["latin"], + "weights": ["500"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v13", + "source": "https://github.com/theleagueof/ostrich-sans", + "license": "https://github.com/theleagueof/ostrich-sans/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/ostrich-sans-rounded/package.json b/packages/ostrich-sans-rounded/package.json index 2bc1bb3db02..142648296c4 100644 --- a/packages/ostrich-sans-rounded/package.json +++ b/packages/ostrich-sans-rounded/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ostrich-sans-rounded#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/ostrich-sans-rounded" } } diff --git a/packages/ostrich-sans/README.md b/packages/ostrich-sans/README.md index a108191ef76..0470e3dbb4f 100644 --- a/packages/ostrich-sans/README.md +++ b/packages/ostrich-sans/README.md @@ -1,4 +1,5 @@ # Fontsource Ostrich Sans + [![npm version](https://badge.fury.io/js/fontsource-ostrich-sans.svg)](https://www.npmjs.com/package/fontsource-ostrich-sans) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-ostrich-sans)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-ostrich-sans)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Ostrich Sans” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[300,400,700,900]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/theleagueof/ostrich-sans) and [License](https:/ Font version (provided by source): `v13`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/ostrich-sans/metadata.json b/packages/ostrich-sans/metadata.json index 987b8af7d88..350425b5e30 100644 --- a/packages/ostrich-sans/metadata.json +++ b/packages/ostrich-sans/metadata.json @@ -1 +1,13 @@ -{"fontId":"ostrich-sans","fontName":"Ostrich Sans","subsets":["latin"],"weights":["300","400","700","900"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v13","source":"https://github.com/theleagueof/ostrich-sans","license":"https://github.com/theleagueof/ostrich-sans/blob/master/Open%20Font%20License.markdown","type":"league"} +{ + "fontId": "ostrich-sans", + "fontName": "Ostrich Sans", + "subsets": ["latin"], + "weights": ["300", "400", "700", "900"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v13", + "source": "https://github.com/theleagueof/ostrich-sans", + "license": "https://github.com/theleagueof/ostrich-sans/blob/master/Open%20Font%20License.markdown", + "type": "league" +} diff --git a/packages/ostrich-sans/package.json b/packages/ostrich-sans/package.json index 92aee52a5ac..3cc92876d32 100644 --- a/packages/ostrich-sans/package.json +++ b/packages/ostrich-sans/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ostrich-sans#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/ostrich-sans" } } diff --git a/packages/oswald/package.json b/packages/oswald/package.json index 60f62a34662..b3ff86e4b45 100644 --- a/packages/oswald/package.json +++ b/packages/oswald/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/oswald", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/oswald#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/oswald" + } } diff --git a/packages/over-the-rainbow/package.json b/packages/over-the-rainbow/package.json index be7f9e51d5a..7336eec1388 100644 --- a/packages/over-the-rainbow/package.json +++ b/packages/over-the-rainbow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/over-the-rainbow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/over-the-rainbow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/over-the-rainbow" + } } diff --git a/packages/overlock-sc/package.json b/packages/overlock-sc/package.json index 94e93da61a1..8d93b09635a 100644 --- a/packages/overlock-sc/package.json +++ b/packages/overlock-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/overlock-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/overlock-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/overlock-sc" + } } diff --git a/packages/overlock/package.json b/packages/overlock/package.json index f678a78a159..dfe5d9fe522 100644 --- a/packages/overlock/package.json +++ b/packages/overlock/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/overlock", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/overlock#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/overlock" + } } diff --git a/packages/overpass-mono/package.json b/packages/overpass-mono/package.json index 8aaac57dd8d..6f3614ee873 100644 --- a/packages/overpass-mono/package.json +++ b/packages/overpass-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/overpass-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/overpass-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/overpass-mono" + } } diff --git a/packages/overpass/package.json b/packages/overpass/package.json index 98a285f9a81..75a47e770ef 100644 --- a/packages/overpass/package.json +++ b/packages/overpass/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/overpass", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/overpass#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/overpass" + } } diff --git a/packages/ovo/package.json b/packages/ovo/package.json index 19e44fa476c..eb59fadf509 100644 --- a/packages/ovo/package.json +++ b/packages/ovo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ovo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ovo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ovo" + } } diff --git a/packages/oxanium/package.json b/packages/oxanium/package.json index 766ac062e1b..06c352c6135 100644 --- a/packages/oxanium/package.json +++ b/packages/oxanium/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/oxanium", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/oxanium#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/oxanium" + } } diff --git a/packages/oxygen-mono/package.json b/packages/oxygen-mono/package.json index 42fe8adf35d..b41905daedf 100644 --- a/packages/oxygen-mono/package.json +++ b/packages/oxygen-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/oxygen-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/oxygen-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/oxygen-mono" + } } diff --git a/packages/oxygen/package.json b/packages/oxygen/package.json index 8c28403173c..e0821cf0deb 100644 --- a/packages/oxygen/package.json +++ b/packages/oxygen/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/oxygen", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/oxygen#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/oxygen" + } } diff --git a/packages/pacifico/package.json b/packages/pacifico/package.json index 408780935f6..0333791861d 100644 --- a/packages/pacifico/package.json +++ b/packages/pacifico/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pacifico", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pacifico#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pacifico" + } } diff --git a/packages/padauk/package.json b/packages/padauk/package.json index 8d3f449bd1a..49658bdd37a 100644 --- a/packages/padauk/package.json +++ b/packages/padauk/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/padauk", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/padauk#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/padauk" + } } diff --git a/packages/palanquin-dark/package.json b/packages/palanquin-dark/package.json index ea43757f4fa..563f2f737cf 100644 --- a/packages/palanquin-dark/package.json +++ b/packages/palanquin-dark/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/palanquin-dark", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/palanquin-dark#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/palanquin-dark" + } } diff --git a/packages/palanquin/package.json b/packages/palanquin/package.json index dae9db00456..4ba2df2df4c 100644 --- a/packages/palanquin/package.json +++ b/packages/palanquin/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/palanquin", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/palanquin#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/palanquin" + } } diff --git a/packages/pangolin/package.json b/packages/pangolin/package.json index 8ddd12764e8..bc6a966285b 100644 --- a/packages/pangolin/package.json +++ b/packages/pangolin/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pangolin", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pangolin#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pangolin" + } } diff --git a/packages/paprika/package.json b/packages/paprika/package.json index fa0318e0096..72f984f134e 100644 --- a/packages/paprika/package.json +++ b/packages/paprika/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/paprika", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/paprika#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/paprika" + } } diff --git a/packages/parisienne/package.json b/packages/parisienne/package.json index beaee4da5ee..eda7297356c 100644 --- a/packages/parisienne/package.json +++ b/packages/parisienne/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/parisienne", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/parisienne#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/parisienne" + } } diff --git a/packages/passero-one/package.json b/packages/passero-one/package.json index debf3747401..256bc6edc96 100644 --- a/packages/passero-one/package.json +++ b/packages/passero-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/passero-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/passero-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/passero-one" + } } diff --git a/packages/passion-one/package.json b/packages/passion-one/package.json index fb55471d034..bae1fd4e607 100644 --- a/packages/passion-one/package.json +++ b/packages/passion-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/passion-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/passion-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/passion-one" + } } diff --git a/packages/pathway-gothic-one/package.json b/packages/pathway-gothic-one/package.json index 2029533a572..23df75d1d94 100644 --- a/packages/pathway-gothic-one/package.json +++ b/packages/pathway-gothic-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pathway-gothic-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pathway-gothic-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pathway-gothic-one" + } } diff --git a/packages/patrick-hand-sc/package.json b/packages/patrick-hand-sc/package.json index f3bb6055973..7aae975aa47 100644 --- a/packages/patrick-hand-sc/package.json +++ b/packages/patrick-hand-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/patrick-hand-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/patrick-hand-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/patrick-hand-sc" + } } diff --git a/packages/patrick-hand/package.json b/packages/patrick-hand/package.json index fa486ff9682..ecdf848a1a9 100644 --- a/packages/patrick-hand/package.json +++ b/packages/patrick-hand/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/patrick-hand", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/patrick-hand#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/patrick-hand" + } } diff --git a/packages/pattaya/package.json b/packages/pattaya/package.json index 5170831fcda..bc7e2700b40 100644 --- a/packages/pattaya/package.json +++ b/packages/pattaya/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pattaya", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pattaya#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pattaya" + } } diff --git a/packages/patua-one/package.json b/packages/patua-one/package.json index f0f1eba3fef..2bc0379726a 100644 --- a/packages/patua-one/package.json +++ b/packages/patua-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/patua-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/patua-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/patua-one" + } } diff --git a/packages/pavanam/package.json b/packages/pavanam/package.json index 75cd55923ea..35b9af44302 100644 --- a/packages/pavanam/package.json +++ b/packages/pavanam/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pavanam", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pavanam#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pavanam" + } } diff --git a/packages/paytone-one/package.json b/packages/paytone-one/package.json index 8945c90699b..41f252a6083 100644 --- a/packages/paytone-one/package.json +++ b/packages/paytone-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/paytone-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/paytone-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/paytone-one" + } } diff --git a/packages/peddana/package.json b/packages/peddana/package.json index a5e1ec5df89..65809569228 100644 --- a/packages/peddana/package.json +++ b/packages/peddana/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/peddana", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/peddana#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/peddana" + } } diff --git a/packages/peralta/package.json b/packages/peralta/package.json index e0e63351f62..39f0462ed3f 100644 --- a/packages/peralta/package.json +++ b/packages/peralta/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/peralta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/peralta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/peralta" + } } diff --git a/packages/permanent-marker/package.json b/packages/permanent-marker/package.json index 7941c1d2eb2..87b75de8f63 100644 --- a/packages/permanent-marker/package.json +++ b/packages/permanent-marker/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/permanent-marker", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/permanent-marker#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/permanent-marker" + } } diff --git a/packages/petit-formal-script/package.json b/packages/petit-formal-script/package.json index ff57e579507..1ec7abf8869 100644 --- a/packages/petit-formal-script/package.json +++ b/packages/petit-formal-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/petit-formal-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/petit-formal-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/petit-formal-script" + } } diff --git a/packages/petrona/package.json b/packages/petrona/package.json index 51b578df624..f42d86a1175 100644 --- a/packages/petrona/package.json +++ b/packages/petrona/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/petrona", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/petrona#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/petrona" + } } diff --git a/packages/philosopher/package.json b/packages/philosopher/package.json index 011d111fbfc..4689356f7cd 100644 --- a/packages/philosopher/package.json +++ b/packages/philosopher/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/philosopher", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/philosopher#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/philosopher" + } } diff --git a/packages/piedra/package.json b/packages/piedra/package.json index 5e385d470c4..0de93e14e9a 100644 --- a/packages/piedra/package.json +++ b/packages/piedra/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/piedra", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/piedra#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/piedra" + } } diff --git a/packages/pinyon-script/package.json b/packages/pinyon-script/package.json index b3c0d03e546..0c4875e48e9 100644 --- a/packages/pinyon-script/package.json +++ b/packages/pinyon-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pinyon-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pinyon-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pinyon-script" + } } diff --git a/packages/pirata-one/package.json b/packages/pirata-one/package.json index 825828701de..2edcbb00d18 100644 --- a/packages/pirata-one/package.json +++ b/packages/pirata-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pirata-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pirata-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pirata-one" + } } diff --git a/packages/plaster/package.json b/packages/plaster/package.json index 2879a9ded0f..48ca2da8bfb 100644 --- a/packages/plaster/package.json +++ b/packages/plaster/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/plaster", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/plaster#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/plaster" + } } diff --git a/packages/play/package.json b/packages/play/package.json index 4f68800d4b7..f4375679733 100644 --- a/packages/play/package.json +++ b/packages/play/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/play", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/play#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/play" + } } diff --git a/packages/playball/package.json b/packages/playball/package.json index 88ddab6560a..5bb4eadc065 100644 --- a/packages/playball/package.json +++ b/packages/playball/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/playball", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/playball#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/playball" + } } diff --git a/packages/playfair-display-sc/package.json b/packages/playfair-display-sc/package.json index 92ade65c653..b67faf01750 100644 --- a/packages/playfair-display-sc/package.json +++ b/packages/playfair-display-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/playfair-display-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/playfair-display-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/playfair-display-sc" + } } diff --git a/packages/playfair-display/package.json b/packages/playfair-display/package.json index fc46965d09a..0a8089aff3b 100644 --- a/packages/playfair-display/package.json +++ b/packages/playfair-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/playfair-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/playfair-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/playfair-display" + } } diff --git a/packages/podkova/package.json b/packages/podkova/package.json index 2046f68b927..eb0221977e9 100644 --- a/packages/podkova/package.json +++ b/packages/podkova/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/podkova", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/podkova#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/podkova" + } } diff --git a/packages/poiret-one/package.json b/packages/poiret-one/package.json index 29cdd3a2aa8..54a458f90f5 100644 --- a/packages/poiret-one/package.json +++ b/packages/poiret-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/poiret-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/poiret-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/poiret-one" + } } diff --git a/packages/poller-one/package.json b/packages/poller-one/package.json index 38b1f49db1a..3d778521290 100644 --- a/packages/poller-one/package.json +++ b/packages/poller-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/poller-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/poller-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/poller-one" + } } diff --git a/packages/poly/package.json b/packages/poly/package.json index e5df23cd021..de8e46b7437 100644 --- a/packages/poly/package.json +++ b/packages/poly/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/poly", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/poly#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/poly" + } } diff --git a/packages/pompiere/package.json b/packages/pompiere/package.json index 06e16463f7a..f968f72770d 100644 --- a/packages/pompiere/package.json +++ b/packages/pompiere/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pompiere", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pompiere#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pompiere" + } } diff --git a/packages/pontano-sans/package.json b/packages/pontano-sans/package.json index b175d64c96b..c37b66a8ee9 100644 --- a/packages/pontano-sans/package.json +++ b/packages/pontano-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pontano-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pontano-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pontano-sans" + } } diff --git a/packages/poor-story/package.json b/packages/poor-story/package.json index 882b165ae72..aa22906a8e9 100644 --- a/packages/poor-story/package.json +++ b/packages/poor-story/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/poor-story", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/poor-story#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/poor-story" + } } diff --git a/packages/poppins/package.json b/packages/poppins/package.json index 40a8670d60d..28d554dee8c 100644 --- a/packages/poppins/package.json +++ b/packages/poppins/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/poppins", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/poppins#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/poppins" + } } diff --git a/packages/port-lligat-sans/package.json b/packages/port-lligat-sans/package.json index 5632ef3ab55..6ec97d133a2 100644 --- a/packages/port-lligat-sans/package.json +++ b/packages/port-lligat-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/port-lligat-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/port-lligat-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/port-lligat-sans" + } } diff --git a/packages/port-lligat-slab/package.json b/packages/port-lligat-slab/package.json index 54c936d956d..9d9593cede8 100644 --- a/packages/port-lligat-slab/package.json +++ b/packages/port-lligat-slab/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/port-lligat-slab", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/port-lligat-slab#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/port-lligat-slab" + } } diff --git a/packages/pragati-narrow/package.json b/packages/pragati-narrow/package.json index 5a17561b2d1..f9d1b5b7a93 100644 --- a/packages/pragati-narrow/package.json +++ b/packages/pragati-narrow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pragati-narrow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pragati-narrow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pragati-narrow" + } } diff --git a/packages/prata/package.json b/packages/prata/package.json index ae017a58a7f..c2081d28d20 100644 --- a/packages/prata/package.json +++ b/packages/prata/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/prata", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/prata#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/prata" + } } diff --git a/packages/preahvihear/package.json b/packages/preahvihear/package.json index b4e3eebf131..cc29e84e77f 100644 --- a/packages/preahvihear/package.json +++ b/packages/preahvihear/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/preahvihear", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/preahvihear#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/preahvihear" + } } diff --git a/packages/press-start-2p/package.json b/packages/press-start-2p/package.json index f46a475dd4c..127c74c2ce2 100644 --- a/packages/press-start-2p/package.json +++ b/packages/press-start-2p/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/press-start-2p", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/press-start-2p#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/press-start-2p" + } } diff --git a/packages/pridi/package.json b/packages/pridi/package.json index e348713ab06..0e4e7afee07 100644 --- a/packages/pridi/package.json +++ b/packages/pridi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pridi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pridi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pridi" + } } diff --git a/packages/princess-sofia/package.json b/packages/princess-sofia/package.json index 17ca52766a8..3afa94c13ff 100644 --- a/packages/princess-sofia/package.json +++ b/packages/princess-sofia/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/princess-sofia", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/princess-sofia#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/princess-sofia" + } } diff --git a/packages/prociono/package.json b/packages/prociono/package.json index c68a1dbfefd..fa4de505222 100644 --- a/packages/prociono/package.json +++ b/packages/prociono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/prociono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/prociono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/prociono" + } } diff --git a/packages/prompt/package.json b/packages/prompt/package.json index 4ea4242aab2..275a036d45b 100644 --- a/packages/prompt/package.json +++ b/packages/prompt/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/prompt", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/prompt#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/prompt" + } } diff --git a/packages/prosto-one/package.json b/packages/prosto-one/package.json index 8b9f078ef9e..693d9153e6c 100644 --- a/packages/prosto-one/package.json +++ b/packages/prosto-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/prosto-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/prosto-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/prosto-one" + } } diff --git a/packages/proza-libre/package.json b/packages/proza-libre/package.json index 2336b3d591b..34a08b5c893 100644 --- a/packages/proza-libre/package.json +++ b/packages/proza-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/proza-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/proza-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/proza-libre" + } } diff --git a/packages/pt-mono/package.json b/packages/pt-mono/package.json index 79246b5912e..a01e82b723a 100644 --- a/packages/pt-mono/package.json +++ b/packages/pt-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pt-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pt-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pt-mono" + } } diff --git a/packages/pt-sans-caption/package.json b/packages/pt-sans-caption/package.json index 9be7b5da17d..e1719814ac1 100644 --- a/packages/pt-sans-caption/package.json +++ b/packages/pt-sans-caption/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pt-sans-caption", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pt-sans-caption#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pt-sans-caption" + } } diff --git a/packages/pt-sans-narrow/package.json b/packages/pt-sans-narrow/package.json index 2d70299db41..252e8f69f9f 100644 --- a/packages/pt-sans-narrow/package.json +++ b/packages/pt-sans-narrow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pt-sans-narrow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pt-sans-narrow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pt-sans-narrow" + } } diff --git a/packages/pt-sans/package.json b/packages/pt-sans/package.json index 7ac2978b0c7..b47fe6c64d6 100644 --- a/packages/pt-sans/package.json +++ b/packages/pt-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pt-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pt-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pt-sans" + } } diff --git a/packages/pt-serif-caption/package.json b/packages/pt-serif-caption/package.json index d37ed6fefeb..c28d01aa4d4 100644 --- a/packages/pt-serif-caption/package.json +++ b/packages/pt-serif-caption/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pt-serif-caption", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pt-serif-caption#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pt-serif-caption" + } } diff --git a/packages/pt-serif/package.json b/packages/pt-serif/package.json index c5663f27d04..28811e7a7dc 100644 --- a/packages/pt-serif/package.json +++ b/packages/pt-serif/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/pt-serif", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/pt-serif#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/pt-serif" + } } diff --git a/packages/public-sans/package.json b/packages/public-sans/package.json index 9cbd0c4f04f..c928ee4890d 100644 --- a/packages/public-sans/package.json +++ b/packages/public-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/public-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/public-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/public-sans" + } } diff --git a/packages/puritan/package.json b/packages/puritan/package.json index 58b210691fb..814901b1680 100644 --- a/packages/puritan/package.json +++ b/packages/puritan/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/puritan", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/puritan#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/puritan" + } } diff --git a/packages/purple-purse/package.json b/packages/purple-purse/package.json index 4df34e1c1f8..b7f5a666780 100644 --- a/packages/purple-purse/package.json +++ b/packages/purple-purse/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/purple-purse", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/purple-purse#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/purple-purse" + } } diff --git a/packages/quando/package.json b/packages/quando/package.json index 04842af0f1e..845934fbd3a 100644 --- a/packages/quando/package.json +++ b/packages/quando/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/quando", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/quando#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/quando" + } } diff --git a/packages/quantico/package.json b/packages/quantico/package.json index b1840b5b9c0..2343d892d79 100644 --- a/packages/quantico/package.json +++ b/packages/quantico/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/quantico", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/quantico#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/quantico" + } } diff --git a/packages/quattrocento-sans/package.json b/packages/quattrocento-sans/package.json index 5f42e494762..8dcf1dc5350 100644 --- a/packages/quattrocento-sans/package.json +++ b/packages/quattrocento-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/quattrocento-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/quattrocento-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/quattrocento-sans" + } } diff --git a/packages/quattrocento/package.json b/packages/quattrocento/package.json index dd6cbabd6b3..9de5c16402e 100644 --- a/packages/quattrocento/package.json +++ b/packages/quattrocento/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/quattrocento", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/quattrocento#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/quattrocento" + } } diff --git a/packages/questrial/package.json b/packages/questrial/package.json index 0f985c084da..b7e89df489d 100644 --- a/packages/questrial/package.json +++ b/packages/questrial/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/questrial", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/questrial#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/questrial" + } } diff --git a/packages/quicksand/package.json b/packages/quicksand/package.json index f6802afbe1c..9368610ffc9 100644 --- a/packages/quicksand/package.json +++ b/packages/quicksand/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/quicksand", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/quicksand#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/quicksand" + } } diff --git a/packages/quintessential/package.json b/packages/quintessential/package.json index 93ad6211f5d..d226f1f6883 100644 --- a/packages/quintessential/package.json +++ b/packages/quintessential/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/quintessential", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/quintessential#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/quintessential" + } } diff --git a/packages/qwigley/package.json b/packages/qwigley/package.json index 098a427ef01..da22ef828fd 100644 --- a/packages/qwigley/package.json +++ b/packages/qwigley/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/qwigley", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/qwigley#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/qwigley" + } } diff --git a/packages/racing-sans-one/package.json b/packages/racing-sans-one/package.json index f7ef8db3c1d..5adece94782 100644 --- a/packages/racing-sans-one/package.json +++ b/packages/racing-sans-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/racing-sans-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/racing-sans-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/racing-sans-one" + } } diff --git a/packages/radley/package.json b/packages/radley/package.json index 2c1045fb801..3eeb4378e16 100644 --- a/packages/radley/package.json +++ b/packages/radley/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/radley", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/radley#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/radley" + } } diff --git a/packages/rajdhani/package.json b/packages/rajdhani/package.json index c11f85d8c0c..752dfe169fb 100644 --- a/packages/rajdhani/package.json +++ b/packages/rajdhani/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rajdhani", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rajdhani#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rajdhani" + } } diff --git a/packages/rakkas/package.json b/packages/rakkas/package.json index e1a1c55d0f1..6fab59ab7f2 100644 --- a/packages/rakkas/package.json +++ b/packages/rakkas/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rakkas", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rakkas#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rakkas" + } } diff --git a/packages/raleway-dots/package.json b/packages/raleway-dots/package.json index a8674ba0012..fc405cfe295 100644 --- a/packages/raleway-dots/package.json +++ b/packages/raleway-dots/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/raleway-dots", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/raleway-dots#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/raleway-dots" + } } diff --git a/packages/raleway/package.json b/packages/raleway/package.json index 66243ff8fd2..5bd8ae6c0a4 100644 --- a/packages/raleway/package.json +++ b/packages/raleway/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/raleway", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/raleway#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/raleway" + } } diff --git a/packages/ramabhadra/package.json b/packages/ramabhadra/package.json index 043740fb7be..970ac1b9d42 100644 --- a/packages/ramabhadra/package.json +++ b/packages/ramabhadra/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ramabhadra", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ramabhadra#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ramabhadra" + } } diff --git a/packages/ramaraja/package.json b/packages/ramaraja/package.json index b880ddd6b8c..9b9baf644c7 100644 --- a/packages/ramaraja/package.json +++ b/packages/ramaraja/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ramaraja", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ramaraja#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ramaraja" + } } diff --git a/packages/rambla/package.json b/packages/rambla/package.json index c1fe5719c09..1b862e0a0de 100644 --- a/packages/rambla/package.json +++ b/packages/rambla/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rambla", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rambla#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rambla" + } } diff --git a/packages/rammetto-one/package.json b/packages/rammetto-one/package.json index c9140573e58..75ccbcceb1f 100644 --- a/packages/rammetto-one/package.json +++ b/packages/rammetto-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rammetto-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rammetto-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rammetto-one" + } } diff --git a/packages/ranchers/package.json b/packages/ranchers/package.json index 687e4d48a89..5f7bf8e95ec 100644 --- a/packages/ranchers/package.json +++ b/packages/ranchers/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ranchers", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ranchers#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ranchers" + } } diff --git a/packages/rancho/package.json b/packages/rancho/package.json index 049f2dae505..186e3ee4091 100644 --- a/packages/rancho/package.json +++ b/packages/rancho/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rancho", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rancho#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rancho" + } } diff --git a/packages/ranga/package.json b/packages/ranga/package.json index 0a278a85398..60234e7f888 100644 --- a/packages/ranga/package.json +++ b/packages/ranga/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ranga", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ranga#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ranga" + } } diff --git a/packages/rasa/package.json b/packages/rasa/package.json index a9f65bbca9a..56f3ed380c3 100644 --- a/packages/rasa/package.json +++ b/packages/rasa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rasa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rasa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rasa" + } } diff --git a/packages/rationale/package.json b/packages/rationale/package.json index 3fb44a6dabb..48ed00e2a4a 100644 --- a/packages/rationale/package.json +++ b/packages/rationale/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rationale", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rationale#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rationale" + } } diff --git a/packages/ravi-prakash/package.json b/packages/ravi-prakash/package.json index b9550567607..c3bcd123ef0 100644 --- a/packages/ravi-prakash/package.json +++ b/packages/ravi-prakash/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ravi-prakash", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ravi-prakash#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ravi-prakash" + } } diff --git a/packages/recursive/package.json b/packages/recursive/package.json index 92fa6af6139..28bfccf51b5 100644 --- a/packages/recursive/package.json +++ b/packages/recursive/package.json @@ -16,5 +16,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/recursive" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/recursive#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/recursive" + } } diff --git a/packages/red-hat-display/package.json b/packages/red-hat-display/package.json index 2c51c6885fd..5a37d55abd6 100644 --- a/packages/red-hat-display/package.json +++ b/packages/red-hat-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/red-hat-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/red-hat-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/red-hat-display" + } } diff --git a/packages/red-hat-text/package.json b/packages/red-hat-text/package.json index ff999523f73..5f219bd41f9 100644 --- a/packages/red-hat-text/package.json +++ b/packages/red-hat-text/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/red-hat-text", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/red-hat-text#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/red-hat-text" + } } diff --git a/packages/red-rose/package.json b/packages/red-rose/package.json index 35e7653d48c..44114c8203f 100644 --- a/packages/red-rose/package.json +++ b/packages/red-rose/package.json @@ -16,6 +16,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/red-rose", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/red-rose#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/red-rose" + } } diff --git a/packages/redressed/package.json b/packages/redressed/package.json index d31fa68762a..e482ec90978 100644 --- a/packages/redressed/package.json +++ b/packages/redressed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/redressed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/redressed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/redressed" + } } diff --git a/packages/reem-kufi/package.json b/packages/reem-kufi/package.json index 06b1c1a7ceb..9343ec51d24 100644 --- a/packages/reem-kufi/package.json +++ b/packages/reem-kufi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/reem-kufi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/reem-kufi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/reem-kufi" + } } diff --git a/packages/reenie-beanie/package.json b/packages/reenie-beanie/package.json index 957af766737..77ee9c3228f 100644 --- a/packages/reenie-beanie/package.json +++ b/packages/reenie-beanie/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/reenie-beanie", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/reenie-beanie#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/reenie-beanie" + } } diff --git a/packages/revalia/package.json b/packages/revalia/package.json index c2f5ecc421d..a33de6724dc 100644 --- a/packages/revalia/package.json +++ b/packages/revalia/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/revalia", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/revalia#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/revalia" + } } diff --git a/packages/rhodium-libre/package.json b/packages/rhodium-libre/package.json index e4827af565c..fb4f9e2ac43 100644 --- a/packages/rhodium-libre/package.json +++ b/packages/rhodium-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rhodium-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rhodium-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rhodium-libre" + } } diff --git a/packages/ribeye-marrow/package.json b/packages/ribeye-marrow/package.json index d8685973fa8..dd3a0cd7e8f 100644 --- a/packages/ribeye-marrow/package.json +++ b/packages/ribeye-marrow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ribeye-marrow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ribeye-marrow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ribeye-marrow" + } } diff --git a/packages/ribeye/package.json b/packages/ribeye/package.json index 319ea7696ee..ea0f08995ca 100644 --- a/packages/ribeye/package.json +++ b/packages/ribeye/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ribeye", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ribeye#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ribeye" + } } diff --git a/packages/righteous/package.json b/packages/righteous/package.json index 4d07981fe0b..bf50f4bda7d 100644 --- a/packages/righteous/package.json +++ b/packages/righteous/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/righteous", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/righteous#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/righteous" + } } diff --git a/packages/risque/package.json b/packages/risque/package.json index 5cac75c0ad7..98bae1fce48 100644 --- a/packages/risque/package.json +++ b/packages/risque/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/risque", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/risque#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/risque" + } } diff --git a/packages/roboto-condensed/package.json b/packages/roboto-condensed/package.json index 9ba4cbe832e..4ee264dfc67 100644 --- a/packages/roboto-condensed/package.json +++ b/packages/roboto-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/roboto-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/roboto-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/roboto-condensed" + } } diff --git a/packages/roboto-mono/package.json b/packages/roboto-mono/package.json index 67a0f098bb6..fba8504fd5e 100644 --- a/packages/roboto-mono/package.json +++ b/packages/roboto-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/roboto-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/roboto-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/roboto-mono" + } } diff --git a/packages/roboto-slab/package.json b/packages/roboto-slab/package.json index 4d8c9825264..8779087062d 100644 --- a/packages/roboto-slab/package.json +++ b/packages/roboto-slab/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/roboto-slab", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/roboto-slab#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/roboto-slab" + } } diff --git a/packages/roboto/package.json b/packages/roboto/package.json index b7b3431a582..52f42f34cab 100644 --- a/packages/roboto/package.json +++ b/packages/roboto/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/roboto", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/roboto#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/roboto" + } } diff --git a/packages/rochester/package.json b/packages/rochester/package.json index bb4fd9f4f58..51e43c2d8fa 100644 --- a/packages/rochester/package.json +++ b/packages/rochester/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rochester", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rochester#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rochester" + } } diff --git a/packages/rock-salt/package.json b/packages/rock-salt/package.json index 2603d72d238..f9e6e3166b2 100644 --- a/packages/rock-salt/package.json +++ b/packages/rock-salt/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rock-salt", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rock-salt#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rock-salt" + } } diff --git a/packages/rokkitt/package.json b/packages/rokkitt/package.json index c3263055ea2..96cee43b7d5 100644 --- a/packages/rokkitt/package.json +++ b/packages/rokkitt/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rokkitt", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rokkitt#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rokkitt" + } } diff --git a/packages/romanesco/package.json b/packages/romanesco/package.json index d9e2af03512..69b1eb6f8f0 100644 --- a/packages/romanesco/package.json +++ b/packages/romanesco/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/romanesco", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/romanesco#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/romanesco" + } } diff --git a/packages/ropa-sans/package.json b/packages/ropa-sans/package.json index 9ea0b4f4860..fe2dbc1da93 100644 --- a/packages/ropa-sans/package.json +++ b/packages/ropa-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ropa-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ropa-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ropa-sans" + } } diff --git a/packages/rosario/package.json b/packages/rosario/package.json index c02d5bf7ac7..01244221f43 100644 --- a/packages/rosario/package.json +++ b/packages/rosario/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rosario", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rosario#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rosario" + } } diff --git a/packages/rosarivo/package.json b/packages/rosarivo/package.json index 682c301610e..cdce848450c 100644 --- a/packages/rosarivo/package.json +++ b/packages/rosarivo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rosarivo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rosarivo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rosarivo" + } } diff --git a/packages/rouge-script/package.json b/packages/rouge-script/package.json index 2a0c9958c7f..d6d15bdf048 100644 --- a/packages/rouge-script/package.json +++ b/packages/rouge-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rouge-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rouge-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rouge-script" + } } diff --git a/packages/rowdies/package.json b/packages/rowdies/package.json index c1c9874faca..9f1a73217d7 100644 --- a/packages/rowdies/package.json +++ b/packages/rowdies/package.json @@ -16,6 +16,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rowdies", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rowdies#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rowdies" + } } diff --git a/packages/rozha-one/package.json b/packages/rozha-one/package.json index 4bdc194b804..677466f17e5 100644 --- a/packages/rozha-one/package.json +++ b/packages/rozha-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rozha-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rozha-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rozha-one" + } } diff --git a/packages/rubik-mono-one/package.json b/packages/rubik-mono-one/package.json index c3359787644..abbde6afb95 100644 --- a/packages/rubik-mono-one/package.json +++ b/packages/rubik-mono-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rubik-mono-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rubik-mono-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rubik-mono-one" + } } diff --git a/packages/rubik/package.json b/packages/rubik/package.json index d4e51c5a051..9bebc33dbf7 100644 --- a/packages/rubik/package.json +++ b/packages/rubik/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rubik", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rubik#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rubik" + } } diff --git a/packages/ruda/package.json b/packages/ruda/package.json index 54048a2f377..d9099b8b09e 100644 --- a/packages/ruda/package.json +++ b/packages/ruda/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ruda", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ruda#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ruda" + } } diff --git a/packages/rufina/package.json b/packages/rufina/package.json index 2464e2e09b2..5aab49f4f65 100644 --- a/packages/rufina/package.json +++ b/packages/rufina/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rufina", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rufina#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rufina" + } } diff --git a/packages/ruge-boogie/package.json b/packages/ruge-boogie/package.json index f64428d8801..bc60fea3e19 100644 --- a/packages/ruge-boogie/package.json +++ b/packages/ruge-boogie/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ruge-boogie", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ruge-boogie#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ruge-boogie" + } } diff --git a/packages/ruluko/package.json b/packages/ruluko/package.json index e970fa57e55..71bfc44adb6 100644 --- a/packages/ruluko/package.json +++ b/packages/ruluko/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ruluko", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ruluko#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ruluko" + } } diff --git a/packages/rum-raisin/package.json b/packages/rum-raisin/package.json index 2d6b413144e..dd4c2f2cdb6 100644 --- a/packages/rum-raisin/package.json +++ b/packages/rum-raisin/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rum-raisin", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rum-raisin#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rum-raisin" + } } diff --git a/packages/ruslan-display/package.json b/packages/ruslan-display/package.json index ab7a69083ec..003b944e37a 100644 --- a/packages/ruslan-display/package.json +++ b/packages/ruslan-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ruslan-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ruslan-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ruslan-display" + } } diff --git a/packages/russo-one/package.json b/packages/russo-one/package.json index 009bcb0a186..1ebadec3e41 100644 --- a/packages/russo-one/package.json +++ b/packages/russo-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/russo-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/russo-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/russo-one" + } } diff --git a/packages/ruthie/package.json b/packages/ruthie/package.json index c1a6e9f763c..2f6bb19393b 100644 --- a/packages/ruthie/package.json +++ b/packages/ruthie/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ruthie", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ruthie#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ruthie" + } } diff --git a/packages/rye/package.json b/packages/rye/package.json index 7b12a9d72a4..4587c6260c3 100644 --- a/packages/rye/package.json +++ b/packages/rye/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/rye", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/rye#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/rye" + } } diff --git a/packages/sacramento/package.json b/packages/sacramento/package.json index 1158a008f8b..9176211b2d5 100644 --- a/packages/sacramento/package.json +++ b/packages/sacramento/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sacramento", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sacramento#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sacramento" + } } diff --git a/packages/sahitya/package.json b/packages/sahitya/package.json index 6ff2a829a88..2a7679c1ec7 100644 --- a/packages/sahitya/package.json +++ b/packages/sahitya/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sahitya", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sahitya#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sahitya" + } } diff --git a/packages/sail/package.json b/packages/sail/package.json index 451aac72293..12665db1129 100644 --- a/packages/sail/package.json +++ b/packages/sail/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sail", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sail#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sail" + } } diff --git a/packages/saira-condensed/package.json b/packages/saira-condensed/package.json index a7d6c9a0cb3..7a8c5a25129 100644 --- a/packages/saira-condensed/package.json +++ b/packages/saira-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/saira-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/saira-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/saira-condensed" + } } diff --git a/packages/saira-extra-condensed/package.json b/packages/saira-extra-condensed/package.json index cc4847c9e60..6bbdf040f8b 100644 --- a/packages/saira-extra-condensed/package.json +++ b/packages/saira-extra-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/saira-extra-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/saira-extra-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/saira-extra-condensed" + } } diff --git a/packages/saira-semi-condensed/package.json b/packages/saira-semi-condensed/package.json index 367b9b266d8..0b24b328603 100644 --- a/packages/saira-semi-condensed/package.json +++ b/packages/saira-semi-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/saira-semi-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/saira-semi-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/saira-semi-condensed" + } } diff --git a/packages/saira-stencil-one/package.json b/packages/saira-stencil-one/package.json index 9545ca47933..476ec75b576 100644 --- a/packages/saira-stencil-one/package.json +++ b/packages/saira-stencil-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/saira-stencil-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/saira-stencil-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/saira-stencil-one" + } } diff --git a/packages/saira/package.json b/packages/saira/package.json index fd3c5acc6ee..298989750df 100644 --- a/packages/saira/package.json +++ b/packages/saira/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/saira", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/saira#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/saira" + } } diff --git a/packages/salsa/package.json b/packages/salsa/package.json index aeae7b20f06..5f2961cd461 100644 --- a/packages/salsa/package.json +++ b/packages/salsa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/salsa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/salsa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/salsa" + } } diff --git a/packages/sanchez/package.json b/packages/sanchez/package.json index 59d2c3a8f88..7808c2f6aea 100644 --- a/packages/sanchez/package.json +++ b/packages/sanchez/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sanchez", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sanchez#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sanchez" + } } diff --git a/packages/sancreek/package.json b/packages/sancreek/package.json index 0b50b6050cd..cca668f2bf5 100644 --- a/packages/sancreek/package.json +++ b/packages/sancreek/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sancreek", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sancreek#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sancreek" + } } diff --git a/packages/sansita/package.json b/packages/sansita/package.json index de0f4bb9677..7c7d4844397 100644 --- a/packages/sansita/package.json +++ b/packages/sansita/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sansita", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sansita#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sansita" + } } diff --git a/packages/sarabun/package.json b/packages/sarabun/package.json index d47eaedb4d2..cef1d0eb783 100644 --- a/packages/sarabun/package.json +++ b/packages/sarabun/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sarabun", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sarabun#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sarabun" + } } diff --git a/packages/sarala/package.json b/packages/sarala/package.json index 1061848f98c..71b6df4ed81 100644 --- a/packages/sarala/package.json +++ b/packages/sarala/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sarala", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sarala#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sarala" + } } diff --git a/packages/sarina/package.json b/packages/sarina/package.json index cb91d018e2f..b7cb5ecfa9c 100644 --- a/packages/sarina/package.json +++ b/packages/sarina/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sarina", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sarina#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sarina" + } } diff --git a/packages/sarpanch/package.json b/packages/sarpanch/package.json index be10305f285..269683478c1 100644 --- a/packages/sarpanch/package.json +++ b/packages/sarpanch/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sarpanch", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sarpanch#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sarpanch" + } } diff --git a/packages/satisfy/package.json b/packages/satisfy/package.json index de26072de97..357f12df089 100644 --- a/packages/satisfy/package.json +++ b/packages/satisfy/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/satisfy", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/satisfy#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/satisfy" + } } diff --git a/packages/sawarabi-gothic/package.json b/packages/sawarabi-gothic/package.json index 9d86d1b50b0..2b8921477e3 100644 --- a/packages/sawarabi-gothic/package.json +++ b/packages/sawarabi-gothic/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sawarabi-gothic", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sawarabi-gothic#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sawarabi-gothic" + } } diff --git a/packages/sawarabi-mincho/package.json b/packages/sawarabi-mincho/package.json index dd1fda44e20..4cf58f11932 100644 --- a/packages/sawarabi-mincho/package.json +++ b/packages/sawarabi-mincho/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sawarabi-mincho", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sawarabi-mincho#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sawarabi-mincho" + } } diff --git a/packages/scada/package.json b/packages/scada/package.json index 766d74f6c5a..c30c87bbb4d 100644 --- a/packages/scada/package.json +++ b/packages/scada/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/scada", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/scada#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/scada" + } } diff --git a/packages/scheherazade/package.json b/packages/scheherazade/package.json index 6166702cd9f..cc53ec116f1 100644 --- a/packages/scheherazade/package.json +++ b/packages/scheherazade/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/scheherazade", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/scheherazade#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/scheherazade" + } } diff --git a/packages/schoolbell/package.json b/packages/schoolbell/package.json index c46bf6fddfa..5b273d13db1 100644 --- a/packages/schoolbell/package.json +++ b/packages/schoolbell/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/schoolbell", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/schoolbell#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/schoolbell" + } } diff --git a/packages/scope-one/package.json b/packages/scope-one/package.json index 34071881f8a..193571e9e6c 100644 --- a/packages/scope-one/package.json +++ b/packages/scope-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/scope-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/scope-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/scope-one" + } } diff --git a/packages/seaweed-script/package.json b/packages/seaweed-script/package.json index 234291a633f..649ab389108 100644 --- a/packages/seaweed-script/package.json +++ b/packages/seaweed-script/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/seaweed-script", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/seaweed-script#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/seaweed-script" + } } diff --git a/packages/secular-one/package.json b/packages/secular-one/package.json index b7e10593dee..5dca6ae424f 100644 --- a/packages/secular-one/package.json +++ b/packages/secular-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/secular-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/secular-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/secular-one" + } } diff --git a/packages/sedgwick-ave-display/package.json b/packages/sedgwick-ave-display/package.json index 8873b4705d4..b1335fa8ec9 100644 --- a/packages/sedgwick-ave-display/package.json +++ b/packages/sedgwick-ave-display/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sedgwick-ave-display", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sedgwick-ave-display#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sedgwick-ave-display" + } } diff --git a/packages/sedgwick-ave/package.json b/packages/sedgwick-ave/package.json index 552a72e099b..c8516f0dc6a 100644 --- a/packages/sedgwick-ave/package.json +++ b/packages/sedgwick-ave/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sedgwick-ave", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sedgwick-ave#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sedgwick-ave" + } } diff --git a/packages/sen/package.json b/packages/sen/package.json index 418fdaa8f41..dfad96d3761 100644 --- a/packages/sen/package.json +++ b/packages/sen/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sen", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sen#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sen" + } } diff --git a/packages/sevillana/package.json b/packages/sevillana/package.json index d179016ab40..28b4e30cd3d 100644 --- a/packages/sevillana/package.json +++ b/packages/sevillana/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sevillana", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sevillana#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sevillana" + } } diff --git a/packages/seymour-one/package.json b/packages/seymour-one/package.json index 4a15dd812ab..52cb868dfc6 100644 --- a/packages/seymour-one/package.json +++ b/packages/seymour-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/seymour-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/seymour-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/seymour-one" + } } diff --git a/packages/shadows-into-light-two/package.json b/packages/shadows-into-light-two/package.json index c12c6666ebd..a9be6a1c51e 100644 --- a/packages/shadows-into-light-two/package.json +++ b/packages/shadows-into-light-two/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/shadows-into-light-two", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/shadows-into-light-two#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/shadows-into-light-two" + } } diff --git a/packages/shadows-into-light/package.json b/packages/shadows-into-light/package.json index f55fa0b74c3..2af21bd5ab9 100644 --- a/packages/shadows-into-light/package.json +++ b/packages/shadows-into-light/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/shadows-into-light", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/shadows-into-light#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/shadows-into-light" + } } diff --git a/packages/shanti/package.json b/packages/shanti/package.json index cc5093b1ca7..e072d685455 100644 --- a/packages/shanti/package.json +++ b/packages/shanti/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/shanti", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/shanti#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/shanti" + } } diff --git a/packages/share-tech-mono/package.json b/packages/share-tech-mono/package.json index c2469b8d109..bacbd3f423e 100644 --- a/packages/share-tech-mono/package.json +++ b/packages/share-tech-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/share-tech-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/share-tech-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/share-tech-mono" + } } diff --git a/packages/share-tech/package.json b/packages/share-tech/package.json index 207d1bf0814..941bbb71637 100644 --- a/packages/share-tech/package.json +++ b/packages/share-tech/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/share-tech", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/share-tech#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/share-tech" + } } diff --git a/packages/share/package.json b/packages/share/package.json index 64f37411e47..6a435d6faa2 100644 --- a/packages/share/package.json +++ b/packages/share/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/share", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/share#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/share" + } } diff --git a/packages/shojumaru/package.json b/packages/shojumaru/package.json index e3f4f3b2a35..1f4dfcdc29a 100644 --- a/packages/shojumaru/package.json +++ b/packages/shojumaru/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/shojumaru", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/shojumaru#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/shojumaru" + } } diff --git a/packages/short-stack/package.json b/packages/short-stack/package.json index 8aa30c1026d..4c387e857eb 100644 --- a/packages/short-stack/package.json +++ b/packages/short-stack/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/short-stack", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/short-stack#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/short-stack" + } } diff --git a/packages/shrikhand/package.json b/packages/shrikhand/package.json index 622ab840346..2a48196622f 100644 --- a/packages/shrikhand/package.json +++ b/packages/shrikhand/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/shrikhand", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/shrikhand#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/shrikhand" + } } diff --git a/packages/siemreap/package.json b/packages/siemreap/package.json index 3aff4f09e2e..a9dca20c0ea 100644 --- a/packages/siemreap/package.json +++ b/packages/siemreap/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/siemreap", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/siemreap#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/siemreap" + } } diff --git a/packages/sigmar-one/package.json b/packages/sigmar-one/package.json index b0fd0aa2a05..bfc38b8d0e9 100644 --- a/packages/sigmar-one/package.json +++ b/packages/sigmar-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sigmar-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sigmar-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sigmar-one" + } } diff --git a/packages/signika-negative/package.json b/packages/signika-negative/package.json index a5524dbeb90..ac391874711 100644 --- a/packages/signika-negative/package.json +++ b/packages/signika-negative/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/signika-negative", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/signika-negative#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/signika-negative" + } } diff --git a/packages/signika/package.json b/packages/signika/package.json index 255942ab398..fd565d1d8d5 100644 --- a/packages/signika/package.json +++ b/packages/signika/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/signika", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/signika#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/signika" + } } diff --git a/packages/simonetta/package.json b/packages/simonetta/package.json index cf5d6b9cf12..94021b8eb24 100644 --- a/packages/simonetta/package.json +++ b/packages/simonetta/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/simonetta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/simonetta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/simonetta" + } } diff --git a/packages/single-day/package.json b/packages/single-day/package.json index 38fd5951e98..c1f07cd0e95 100644 --- a/packages/single-day/package.json +++ b/packages/single-day/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/single-day", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/single-day#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/single-day" + } } diff --git a/packages/sintony/package.json b/packages/sintony/package.json index 26614935d7d..9001c68dec2 100644 --- a/packages/sintony/package.json +++ b/packages/sintony/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sintony", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sintony#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sintony" + } } diff --git a/packages/sirin-stencil/package.json b/packages/sirin-stencil/package.json index 49561194337..113b66677e2 100644 --- a/packages/sirin-stencil/package.json +++ b/packages/sirin-stencil/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sirin-stencil", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sirin-stencil#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sirin-stencil" + } } diff --git a/packages/six-caps/package.json b/packages/six-caps/package.json index 4e6c1ea0d8d..8b3c7721b58 100644 --- a/packages/six-caps/package.json +++ b/packages/six-caps/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/six-caps", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/six-caps#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/six-caps" + } } diff --git a/packages/skranji/package.json b/packages/skranji/package.json index cb37627e400..2b63815d062 100644 --- a/packages/skranji/package.json +++ b/packages/skranji/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/skranji", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/skranji#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/skranji" + } } diff --git a/packages/slabo-13px/package.json b/packages/slabo-13px/package.json index 3af34f760ab..5239d1c1ce3 100644 --- a/packages/slabo-13px/package.json +++ b/packages/slabo-13px/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/slabo-13px", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/slabo-13px#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/slabo-13px" + } } diff --git a/packages/slabo-27px/package.json b/packages/slabo-27px/package.json index 0a953d8c4f6..446ab7333ec 100644 --- a/packages/slabo-27px/package.json +++ b/packages/slabo-27px/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/slabo-27px", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/slabo-27px#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/slabo-27px" + } } diff --git a/packages/slackey/package.json b/packages/slackey/package.json index 2884e821501..be1a5a1d7f7 100644 --- a/packages/slackey/package.json +++ b/packages/slackey/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/slackey", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/slackey#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/slackey" + } } diff --git a/packages/smokum/package.json b/packages/smokum/package.json index d3b0393a055..caa9d393c90 100644 --- a/packages/smokum/package.json +++ b/packages/smokum/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/smokum", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/smokum#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/smokum" + } } diff --git a/packages/smythe/package.json b/packages/smythe/package.json index 4c20b6990f9..f25db74f424 100644 --- a/packages/smythe/package.json +++ b/packages/smythe/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/smythe", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/smythe#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/smythe" + } } diff --git a/packages/sniglet/package.json b/packages/sniglet/package.json index 3ebf4d79923..f2db58398dd 100644 --- a/packages/sniglet/package.json +++ b/packages/sniglet/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sniglet", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sniglet#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sniglet" + } } diff --git a/packages/snippet/package.json b/packages/snippet/package.json index e69f0c86ca3..c2cad2492cf 100644 --- a/packages/snippet/package.json +++ b/packages/snippet/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/snippet", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/snippet#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/snippet" + } } diff --git a/packages/snowburst-one/package.json b/packages/snowburst-one/package.json index 5d30c64e97f..ad25b36e9b4 100644 --- a/packages/snowburst-one/package.json +++ b/packages/snowburst-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/snowburst-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/snowburst-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/snowburst-one" + } } diff --git a/packages/sofadi-one/package.json b/packages/sofadi-one/package.json index a37cd8e96d5..6dce566e2ec 100644 --- a/packages/sofadi-one/package.json +++ b/packages/sofadi-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sofadi-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sofadi-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sofadi-one" + } } diff --git a/packages/sofia/package.json b/packages/sofia/package.json index a11694cf327..32aeb29cbea 100644 --- a/packages/sofia/package.json +++ b/packages/sofia/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sofia", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sofia#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sofia" + } } diff --git a/packages/solway/package.json b/packages/solway/package.json index 5f428d51cb4..cc55ef5eb35 100644 --- a/packages/solway/package.json +++ b/packages/solway/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/solway", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/solway#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/solway" + } } diff --git a/packages/song-myung/package.json b/packages/song-myung/package.json index b808d800c4a..ad7e373d9b3 100644 --- a/packages/song-myung/package.json +++ b/packages/song-myung/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/song-myung", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/song-myung#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/song-myung" + } } diff --git a/packages/sonsie-one/package.json b/packages/sonsie-one/package.json index e6673a8489e..2f9daa99d80 100644 --- a/packages/sonsie-one/package.json +++ b/packages/sonsie-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sonsie-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sonsie-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sonsie-one" + } } diff --git a/packages/sora/package.json b/packages/sora/package.json index 652bfe14192..252841abcd6 100644 --- a/packages/sora/package.json +++ b/packages/sora/package.json @@ -16,6 +16,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sora", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sora#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sora" + } } diff --git a/packages/sorts-mill-goudy/package.json b/packages/sorts-mill-goudy/package.json index 49de464303f..e6ed96a65bb 100644 --- a/packages/sorts-mill-goudy/package.json +++ b/packages/sorts-mill-goudy/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sorts-mill-goudy", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sorts-mill-goudy#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sorts-mill-goudy" + } } diff --git a/packages/source-code-pro/package.json b/packages/source-code-pro/package.json index 2d8fedbbd49..46b8b8bef71 100644 --- a/packages/source-code-pro/package.json +++ b/packages/source-code-pro/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/source-code-pro", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/source-code-pro#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/source-code-pro" + } } diff --git a/packages/source-sans-pro/package.json b/packages/source-sans-pro/package.json index 97b5b554d06..dae7f3a1704 100644 --- a/packages/source-sans-pro/package.json +++ b/packages/source-sans-pro/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/source-sans-pro", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/source-sans-pro#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/source-sans-pro" + } } diff --git a/packages/source-serif-pro/package.json b/packages/source-serif-pro/package.json index d9e8b00fc1d..7c3776d30ba 100644 --- a/packages/source-serif-pro/package.json +++ b/packages/source-serif-pro/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/source-serif-pro", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/source-serif-pro#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/source-serif-pro" + } } diff --git a/packages/space-mono/package.json b/packages/space-mono/package.json index e9101243cb7..125826416fc 100644 --- a/packages/space-mono/package.json +++ b/packages/space-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/space-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/space-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/space-mono" + } } diff --git a/packages/spartan/package.json b/packages/spartan/package.json index 2e3aec0708d..9d6c7d69592 100644 --- a/packages/spartan/package.json +++ b/packages/spartan/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/spartan", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/spartan#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/spartan" + } } diff --git a/packages/special-elite/package.json b/packages/special-elite/package.json index 6976ee16b33..ed6d9f0b3e2 100644 --- a/packages/special-elite/package.json +++ b/packages/special-elite/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/special-elite", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/special-elite#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/special-elite" + } } diff --git a/packages/spectral-sc/package.json b/packages/spectral-sc/package.json index f4396b33b92..2b69dcd426f 100644 --- a/packages/spectral-sc/package.json +++ b/packages/spectral-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/spectral-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/spectral-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/spectral-sc" + } } diff --git a/packages/spectral/package.json b/packages/spectral/package.json index f1e7a5146e6..b7bc142c178 100644 --- a/packages/spectral/package.json +++ b/packages/spectral/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/spectral", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/spectral#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/spectral" + } } diff --git a/packages/spicy-rice/package.json b/packages/spicy-rice/package.json index 151d90636b9..97ddbbafabb 100644 --- a/packages/spicy-rice/package.json +++ b/packages/spicy-rice/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/spicy-rice", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/spicy-rice#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/spicy-rice" + } } diff --git a/packages/spinnaker/package.json b/packages/spinnaker/package.json index f888bfeb8f4..44a129f97bc 100644 --- a/packages/spinnaker/package.json +++ b/packages/spinnaker/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/spinnaker", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/spinnaker#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/spinnaker" + } } diff --git a/packages/spirax/package.json b/packages/spirax/package.json index 1ff4e1751fb..d373f5146d8 100644 --- a/packages/spirax/package.json +++ b/packages/spirax/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/spirax", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/spirax#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/spirax" + } } diff --git a/packages/squada-one/package.json b/packages/squada-one/package.json index ef177586340..16e546ff84f 100644 --- a/packages/squada-one/package.json +++ b/packages/squada-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/squada-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/squada-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/squada-one" + } } diff --git a/packages/sree-krushnadevaraya/package.json b/packages/sree-krushnadevaraya/package.json index 013b7439e02..87eeac4ade9 100644 --- a/packages/sree-krushnadevaraya/package.json +++ b/packages/sree-krushnadevaraya/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sree-krushnadevaraya", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sree-krushnadevaraya#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sree-krushnadevaraya" + } } diff --git a/packages/sriracha/package.json b/packages/sriracha/package.json index 5ac9e2e32df..835de3b0fde 100644 --- a/packages/sriracha/package.json +++ b/packages/sriracha/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sriracha", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sriracha#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sriracha" + } } diff --git a/packages/srisakdi/package.json b/packages/srisakdi/package.json index ec9c70352ae..348b18d6d68 100644 --- a/packages/srisakdi/package.json +++ b/packages/srisakdi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/srisakdi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/srisakdi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/srisakdi" + } } diff --git a/packages/staatliches/package.json b/packages/staatliches/package.json index 85d8dada826..feebca9c6d4 100644 --- a/packages/staatliches/package.json +++ b/packages/staatliches/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/staatliches", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/staatliches#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/staatliches" + } } diff --git a/packages/stalemate/package.json b/packages/stalemate/package.json index 538f34b5085..c160201f6b5 100644 --- a/packages/stalemate/package.json +++ b/packages/stalemate/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/stalemate", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/stalemate#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/stalemate" + } } diff --git a/packages/stalinist-one/package.json b/packages/stalinist-one/package.json index 587791dd87b..38b85ecc41f 100644 --- a/packages/stalinist-one/package.json +++ b/packages/stalinist-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/stalinist-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/stalinist-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/stalinist-one" + } } diff --git a/packages/stardos-stencil/package.json b/packages/stardos-stencil/package.json index cbc05e262f2..ca1d77fdbdf 100644 --- a/packages/stardos-stencil/package.json +++ b/packages/stardos-stencil/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/stardos-stencil", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/stardos-stencil#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/stardos-stencil" + } } diff --git a/packages/stint-ultra-condensed/package.json b/packages/stint-ultra-condensed/package.json index baaa11cdf21..5fc5304bc25 100644 --- a/packages/stint-ultra-condensed/package.json +++ b/packages/stint-ultra-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/stint-ultra-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/stint-ultra-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/stint-ultra-condensed" + } } diff --git a/packages/stint-ultra-expanded/package.json b/packages/stint-ultra-expanded/package.json index a7d94659d8d..ac7bfc7bafc 100644 --- a/packages/stint-ultra-expanded/package.json +++ b/packages/stint-ultra-expanded/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/stint-ultra-expanded", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/stint-ultra-expanded#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/stint-ultra-expanded" + } } diff --git a/packages/stoke/package.json b/packages/stoke/package.json index ca17c05a49e..bfae960dc5d 100644 --- a/packages/stoke/package.json +++ b/packages/stoke/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/stoke", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/stoke#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/stoke" + } } diff --git a/packages/strait/package.json b/packages/strait/package.json index 78814d57eb5..2cf0594b31b 100644 --- a/packages/strait/package.json +++ b/packages/strait/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/strait", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/strait#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/strait" + } } diff --git a/packages/stylish/package.json b/packages/stylish/package.json index 596bdff60d8..c9b9d699c77 100644 --- a/packages/stylish/package.json +++ b/packages/stylish/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/stylish", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/stylish#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/stylish" + } } diff --git a/packages/sue-ellen-francisco/package.json b/packages/sue-ellen-francisco/package.json index 17850006758..11f62e0b064 100644 --- a/packages/sue-ellen-francisco/package.json +++ b/packages/sue-ellen-francisco/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sue-ellen-francisco", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sue-ellen-francisco#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sue-ellen-francisco" + } } diff --git a/packages/suez-one/package.json b/packages/suez-one/package.json index bd3178a20cc..e5226fea3fe 100644 --- a/packages/suez-one/package.json +++ b/packages/suez-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/suez-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/suez-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/suez-one" + } } diff --git a/packages/sulphur-point/package.json b/packages/sulphur-point/package.json index 93c33590e89..b7c7da88a3a 100644 --- a/packages/sulphur-point/package.json +++ b/packages/sulphur-point/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sulphur-point", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sulphur-point#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sulphur-point" + } } diff --git a/packages/sumana/package.json b/packages/sumana/package.json index 05fa0db2013..f84a06e23d8 100644 --- a/packages/sumana/package.json +++ b/packages/sumana/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sumana", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sumana#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sumana" + } } diff --git a/packages/sunflower/package.json b/packages/sunflower/package.json index 252431a95a3..b35ecdbb5e5 100644 --- a/packages/sunflower/package.json +++ b/packages/sunflower/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sunflower", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sunflower#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sunflower" + } } diff --git a/packages/sunshiney/package.json b/packages/sunshiney/package.json index ccff5fbfd60..e7d09f57603 100644 --- a/packages/sunshiney/package.json +++ b/packages/sunshiney/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sunshiney", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sunshiney#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sunshiney" + } } diff --git a/packages/supermercado-one/package.json b/packages/supermercado-one/package.json index 9c4a615202f..af694e33400 100644 --- a/packages/supermercado-one/package.json +++ b/packages/supermercado-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/supermercado-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/supermercado-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/supermercado-one" + } } diff --git a/packages/sura/package.json b/packages/sura/package.json index 921149d8c48..c3076b6536a 100644 --- a/packages/sura/package.json +++ b/packages/sura/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/sura", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/sura#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/sura" + } } diff --git a/packages/suranna/package.json b/packages/suranna/package.json index c4b59114b22..d17d7977f51 100644 --- a/packages/suranna/package.json +++ b/packages/suranna/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/suranna", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/suranna#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/suranna" + } } diff --git a/packages/suravaram/package.json b/packages/suravaram/package.json index 08bebb1cbdb..a024b634449 100644 --- a/packages/suravaram/package.json +++ b/packages/suravaram/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/suravaram", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/suravaram#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/suravaram" + } } diff --git a/packages/suwannaphum/package.json b/packages/suwannaphum/package.json index 870884abf05..42944939011 100644 --- a/packages/suwannaphum/package.json +++ b/packages/suwannaphum/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/suwannaphum", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/suwannaphum#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/suwannaphum" + } } diff --git a/packages/swanky-and-moo-moo/package.json b/packages/swanky-and-moo-moo/package.json index 146ac64cbdd..63132229291 100644 --- a/packages/swanky-and-moo-moo/package.json +++ b/packages/swanky-and-moo-moo/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/swanky-and-moo-moo", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/swanky-and-moo-moo#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/swanky-and-moo-moo" + } } diff --git a/packages/syncopate/package.json b/packages/syncopate/package.json index 30cfd271a82..33fd3a454e2 100644 --- a/packages/syncopate/package.json +++ b/packages/syncopate/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/syncopate", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/syncopate#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/syncopate" + } } diff --git a/packages/syne-italic/README.md b/packages/syne-italic/README.md index 65dfbfae2d9..821f5208a8e 100644 --- a/packages/syne-italic/README.md +++ b/packages/syne-italic/README.md @@ -1,4 +1,5 @@ # Fontsource Syne Italic + [![npm version](https://badge.fury.io/js/fontsource-syne-italic.svg)](https://www.npmjs.com/package/fontsource-syne-italic) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-syne-italic)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-syne-italic)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Syne Italic” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400]` - Styles: `[italic]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://gitlab.com/bonjour-monde/fonderie/syne-typeface) and [Lice Font version (provided by source): `v2.76`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/syne-italic/metadata.json b/packages/syne-italic/metadata.json index 829cd1447eb..9ec74beeaed 100644 --- a/packages/syne-italic/metadata.json +++ b/packages/syne-italic/metadata.json @@ -1 +1,13 @@ -{"fontId":"syne-italic","fontName":"Syne Italic","subsets":["latin"],"weights":["400"],"styles":["italic"],"defSubset":"latin","lastModified":"2020-08-02","version":"v2.76","source":"https://gitlab.com/bonjour-monde/fonderie/syne-typeface","license":"https://gitlab.com/bonjour-monde/fonderie/syne-typeface/-/blob/master/OFL-LICENSE","type":"other"} +{ + "fontId": "syne-italic", + "fontName": "Syne Italic", + "subsets": ["latin"], + "weights": ["400"], + "styles": ["italic"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v2.76", + "source": "https://gitlab.com/bonjour-monde/fonderie/syne-typeface", + "license": "https://gitlab.com/bonjour-monde/fonderie/syne-typeface/-/blob/master/OFL-LICENSE", + "type": "other" +} diff --git a/packages/syne-italic/package.json b/packages/syne-italic/package.json index b851c3ac516..fac420253ef 100644 --- a/packages/syne-italic/package.json +++ b/packages/syne-italic/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/syne-italic#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/syne-italic" } } diff --git a/packages/syne-mono/README.md b/packages/syne-mono/README.md index 0d69e3a9d10..07504c56693 100644 --- a/packages/syne-mono/README.md +++ b/packages/syne-mono/README.md @@ -1,4 +1,5 @@ # Fontsource Syne Mono + [![npm version](https://badge.fury.io/js/fontsource-syne-mono.svg)](https://www.npmjs.com/package/fontsource-syne-mono) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-syne-mono)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-syne-mono)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Syne Mono” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://gitlab.com/bonjour-monde/fonderie/syne-typeface) and [Lice Font version (provided by source): `v2.76`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/syne-mono/metadata.json b/packages/syne-mono/metadata.json index a538eb862bc..cc27c8af83d 100644 --- a/packages/syne-mono/metadata.json +++ b/packages/syne-mono/metadata.json @@ -1 +1,13 @@ -{"fontId":"syne-mono","fontName":"Syne Mono","subsets":["latin"],"weights":["400"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v2.76","source":"https://gitlab.com/bonjour-monde/fonderie/syne-typeface","license":"https://gitlab.com/bonjour-monde/fonderie/syne-typeface/-/blob/master/OFL-LICENSE","type":"other"} +{ + "fontId": "syne-mono", + "fontName": "Syne Mono", + "subsets": ["latin"], + "weights": ["400"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v2.76", + "source": "https://gitlab.com/bonjour-monde/fonderie/syne-typeface", + "license": "https://gitlab.com/bonjour-monde/fonderie/syne-typeface/-/blob/master/OFL-LICENSE", + "type": "other" +} diff --git a/packages/syne-mono/package.json b/packages/syne-mono/package.json index 5be7920d95c..a3e549789c1 100644 --- a/packages/syne-mono/package.json +++ b/packages/syne-mono/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/syne-mono#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/syne-mono" } } diff --git a/packages/syne/README.md b/packages/syne/README.md index 3abdf27be48..8560d3baefb 100644 --- a/packages/syne/README.md +++ b/packages/syne/README.md @@ -1,4 +1,5 @@ # Fontsource Syne + [![npm version](https://badge.fury.io/js/fontsource-syne.svg)](https://www.npmjs.com/package/fontsource-syne) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-syne)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-syne)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Syne” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin]` - Weights: `[400,700,800]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://gitlab.com/bonjour-monde/fonderie/syne-typeface) and [Lice Font version (provided by source): `v2.76`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/syne/metadata.json b/packages/syne/metadata.json index 3f6181626a0..fbe439d9eed 100644 --- a/packages/syne/metadata.json +++ b/packages/syne/metadata.json @@ -1 +1,13 @@ -{"fontId":"syne","fontName":"Syne","subsets":["latin"],"weights":["400","700","800"],"styles":["normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v2.76","source":"https://gitlab.com/bonjour-monde/fonderie/syne-typeface","license":"https://gitlab.com/bonjour-monde/fonderie/syne-typeface/-/blob/master/OFL-LICENSE","type":"other"} +{ + "fontId": "syne", + "fontName": "Syne", + "subsets": ["latin"], + "weights": ["400", "700", "800"], + "styles": ["normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v2.76", + "source": "https://gitlab.com/bonjour-monde/fonderie/syne-typeface", + "license": "https://gitlab.com/bonjour-monde/fonderie/syne-typeface/-/blob/master/OFL-LICENSE", + "type": "other" +} diff --git a/packages/syne/package.json b/packages/syne/package.json index a3b284bb88c..0e17b1cb05d 100644 --- a/packages/syne/package.json +++ b/packages/syne/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/syne#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/syne" } } diff --git a/packages/tajawal/package.json b/packages/tajawal/package.json index 86ecb9a03a2..8759a7aec55 100644 --- a/packages/tajawal/package.json +++ b/packages/tajawal/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tajawal", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tajawal#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tajawal" + } } diff --git a/packages/tangerine/package.json b/packages/tangerine/package.json index 1ccdd60ef52..e1505323922 100644 --- a/packages/tangerine/package.json +++ b/packages/tangerine/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tangerine", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tangerine#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tangerine" + } } diff --git a/packages/taprom/package.json b/packages/taprom/package.json index bf4ab147778..a868bb85ae9 100644 --- a/packages/taprom/package.json +++ b/packages/taprom/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/taprom", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/taprom#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/taprom" + } } diff --git a/packages/tauri/package.json b/packages/tauri/package.json index 34b84c38e25..7cf17982356 100644 --- a/packages/tauri/package.json +++ b/packages/tauri/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tauri", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tauri#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tauri" + } } diff --git a/packages/taviraj/package.json b/packages/taviraj/package.json index ddf6e7275ab..a0eeb3286a0 100644 --- a/packages/taviraj/package.json +++ b/packages/taviraj/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/taviraj", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/taviraj#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/taviraj" + } } diff --git a/packages/teko/package.json b/packages/teko/package.json index c836dd1c1b0..7b02b4d5ff2 100644 --- a/packages/teko/package.json +++ b/packages/teko/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/teko", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/teko#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/teko" + } } diff --git a/packages/telex/package.json b/packages/telex/package.json index 3686c20afea..682c8430920 100644 --- a/packages/telex/package.json +++ b/packages/telex/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/telex", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/telex#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/telex" + } } diff --git a/packages/tenali-ramakrishna/package.json b/packages/tenali-ramakrishna/package.json index 917ba7e9445..00131413492 100644 --- a/packages/tenali-ramakrishna/package.json +++ b/packages/tenali-ramakrishna/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tenali-ramakrishna", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tenali-ramakrishna#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tenali-ramakrishna" + } } diff --git a/packages/tenor-sans/package.json b/packages/tenor-sans/package.json index c19cf92a287..4ce0002c3b7 100644 --- a/packages/tenor-sans/package.json +++ b/packages/tenor-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tenor-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tenor-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tenor-sans" + } } diff --git a/packages/text-me-one/package.json b/packages/text-me-one/package.json index 48adba29303..c6432fdc28a 100644 --- a/packages/text-me-one/package.json +++ b/packages/text-me-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/text-me-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/text-me-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/text-me-one" + } } diff --git a/packages/thasadith/package.json b/packages/thasadith/package.json index 220105b3768..f69950fde5f 100644 --- a/packages/thasadith/package.json +++ b/packages/thasadith/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/thasadith", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/thasadith#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/thasadith" + } } diff --git a/packages/the-girl-next-door/package.json b/packages/the-girl-next-door/package.json index f3a1fe55214..6abcfc55880 100644 --- a/packages/the-girl-next-door/package.json +++ b/packages/the-girl-next-door/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/the-girl-next-door", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/the-girl-next-door#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/the-girl-next-door" + } } diff --git a/packages/tienne/package.json b/packages/tienne/package.json index 873cb0e4e28..ab7b2bc48ac 100644 --- a/packages/tienne/package.json +++ b/packages/tienne/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tienne", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tienne#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tienne" + } } diff --git a/packages/tillana/package.json b/packages/tillana/package.json index 4945ea69aab..1f7d7c68774 100644 --- a/packages/tillana/package.json +++ b/packages/tillana/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tillana", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tillana#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tillana" + } } diff --git a/packages/timmana/package.json b/packages/timmana/package.json index 0888cc89189..7b4bd563f7e 100644 --- a/packages/timmana/package.json +++ b/packages/timmana/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/timmana", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/timmana#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/timmana" + } } diff --git a/packages/tinos/package.json b/packages/tinos/package.json index e40c3bfc257..dfb8f7247f0 100644 --- a/packages/tinos/package.json +++ b/packages/tinos/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tinos", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tinos#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tinos" + } } diff --git a/packages/titan-one/package.json b/packages/titan-one/package.json index 8b16457ec6f..4855e9f74ae 100644 --- a/packages/titan-one/package.json +++ b/packages/titan-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/titan-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/titan-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/titan-one" + } } diff --git a/packages/titillium-web/package.json b/packages/titillium-web/package.json index 075c0cafccf..38bcfafb915 100644 --- a/packages/titillium-web/package.json +++ b/packages/titillium-web/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/titillium-web", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/titillium-web#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/titillium-web" + } } diff --git a/packages/tomorrow/package.json b/packages/tomorrow/package.json index 8bb2a114ece..186be74afbf 100644 --- a/packages/tomorrow/package.json +++ b/packages/tomorrow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tomorrow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tomorrow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tomorrow" + } } diff --git a/packages/trade-winds/package.json b/packages/trade-winds/package.json index 9546d81da2a..8c587972dba 100644 --- a/packages/trade-winds/package.json +++ b/packages/trade-winds/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/trade-winds", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/trade-winds#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/trade-winds" + } } diff --git a/packages/trirong/package.json b/packages/trirong/package.json index 8e8ef166643..5ced4e57ad4 100644 --- a/packages/trirong/package.json +++ b/packages/trirong/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/trirong", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/trirong#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/trirong" + } } diff --git a/packages/trocchi/package.json b/packages/trocchi/package.json index 3385467a384..3b70e02bf22 100644 --- a/packages/trocchi/package.json +++ b/packages/trocchi/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/trocchi", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/trocchi#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/trocchi" + } } diff --git a/packages/trochut/package.json b/packages/trochut/package.json index 34c75613a67..e0e20ce70e6 100644 --- a/packages/trochut/package.json +++ b/packages/trochut/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/trochut", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/trochut#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/trochut" + } } diff --git a/packages/trykker/package.json b/packages/trykker/package.json index 4381f3e3489..0bfbdc40e5d 100644 --- a/packages/trykker/package.json +++ b/packages/trykker/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/trykker", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/trykker#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/trykker" + } } diff --git a/packages/tulpen-one/package.json b/packages/tulpen-one/package.json index 5c214978a4b..99392a2677d 100644 --- a/packages/tulpen-one/package.json +++ b/packages/tulpen-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/tulpen-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/tulpen-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/tulpen-one" + } } diff --git a/packages/turret-road/package.json b/packages/turret-road/package.json index 9d504c01917..0279e1d74a8 100644 --- a/packages/turret-road/package.json +++ b/packages/turret-road/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/turret-road", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/turret-road#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/turret-road" + } } diff --git a/packages/ubuntu-condensed/package.json b/packages/ubuntu-condensed/package.json index da316c54713..e224a44678c 100644 --- a/packages/ubuntu-condensed/package.json +++ b/packages/ubuntu-condensed/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ubuntu-condensed", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ubuntu-condensed#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ubuntu-condensed" + } } diff --git a/packages/ubuntu-mono/package.json b/packages/ubuntu-mono/package.json index 0b3e6bdcecd..278a9891027 100644 --- a/packages/ubuntu-mono/package.json +++ b/packages/ubuntu-mono/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ubuntu-mono", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ubuntu-mono#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ubuntu-mono" + } } diff --git a/packages/ubuntu/package.json b/packages/ubuntu/package.json index 40bb2fd24c0..57fb9a72055 100644 --- a/packages/ubuntu/package.json +++ b/packages/ubuntu/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ubuntu", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ubuntu#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ubuntu" + } } diff --git a/packages/ultra/package.json b/packages/ultra/package.json index c5a8d5320c2..612af5504a8 100644 --- a/packages/ultra/package.json +++ b/packages/ultra/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/ultra", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/ultra#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/ultra" + } } diff --git a/packages/uncial-antiqua/package.json b/packages/uncial-antiqua/package.json index 3d9547330a7..fe468e21da0 100644 --- a/packages/uncial-antiqua/package.json +++ b/packages/uncial-antiqua/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/uncial-antiqua", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/uncial-antiqua#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/uncial-antiqua" + } } diff --git a/packages/underdog/package.json b/packages/underdog/package.json index d53d013d4ff..9db376baa92 100644 --- a/packages/underdog/package.json +++ b/packages/underdog/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/underdog", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/underdog#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/underdog" + } } diff --git a/packages/unica-one/package.json b/packages/unica-one/package.json index d11f57d9ebb..f186e769d48 100644 --- a/packages/unica-one/package.json +++ b/packages/unica-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/unica-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/unica-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/unica-one" + } } diff --git a/packages/unifrakturcook/package.json b/packages/unifrakturcook/package.json index 4294dc0dbb0..c776af7c38d 100644 --- a/packages/unifrakturcook/package.json +++ b/packages/unifrakturcook/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/unifrakturcook", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/unifrakturcook#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/unifrakturcook" + } } diff --git a/packages/unifrakturmaguntia/package.json b/packages/unifrakturmaguntia/package.json index bb030786f8d..0d53fc6f810 100644 --- a/packages/unifrakturmaguntia/package.json +++ b/packages/unifrakturmaguntia/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/unifrakturmaguntia", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/unifrakturmaguntia#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/unifrakturmaguntia" + } } diff --git a/packages/unkempt/package.json b/packages/unkempt/package.json index 2fe51de51e6..19bbf67636a 100644 --- a/packages/unkempt/package.json +++ b/packages/unkempt/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/unkempt", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/unkempt#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/unkempt" + } } diff --git a/packages/unlock/package.json b/packages/unlock/package.json index 00f47954d30..d24f8f6ee93 100644 --- a/packages/unlock/package.json +++ b/packages/unlock/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/unlock", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/unlock#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/unlock" + } } diff --git a/packages/unna/package.json b/packages/unna/package.json index 11a7d3a9543..29b659dc741 100644 --- a/packages/unna/package.json +++ b/packages/unna/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/unna", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/unna#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/unna" + } } diff --git a/packages/vampiro-one/package.json b/packages/vampiro-one/package.json index f120d5ffbc9..74da60dd976 100644 --- a/packages/vampiro-one/package.json +++ b/packages/vampiro-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/vampiro-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vampiro-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/vampiro-one" + } } diff --git a/packages/varela-round/package.json b/packages/varela-round/package.json index 123e047ed22..56658d98bc7 100644 --- a/packages/varela-round/package.json +++ b/packages/varela-round/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/varela-round", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/varela-round#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/varela-round" + } } diff --git a/packages/varela/package.json b/packages/varela/package.json index 1356500fe70..c1e1d7c1d6d 100644 --- a/packages/varela/package.json +++ b/packages/varela/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/varela", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/varela#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/varela" + } } diff --git a/packages/varta/package.json b/packages/varta/package.json index d5d3184e616..f9397e2b9a1 100644 --- a/packages/varta/package.json +++ b/packages/varta/package.json @@ -16,6 +16,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/varta", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/varta#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/varta" + } } diff --git a/packages/vast-shadow/package.json b/packages/vast-shadow/package.json index 21bcd09281e..581651a55ba 100644 --- a/packages/vast-shadow/package.json +++ b/packages/vast-shadow/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/vast-shadow", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vast-shadow#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/vast-shadow" + } } diff --git a/packages/vazir/README.md b/packages/vazir/README.md index a5629f6b957..d879234183a 100644 --- a/packages/vazir/README.md +++ b/packages/vazir/README.md @@ -1,4 +1,5 @@ # Fontsource Vazir + [![npm version](https://badge.fury.io/js/fontsource-vazir.svg)](https://www.npmjs.com/package/fontsource-vazir) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-vazir)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-vazir)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Vazir” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[all,farsi-digits,farsi-digits-without-latin,without-latin]` - Weights: `[100,300,400,500,700,900]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/rastikerdar/vazir-font) and [License](https://g Font version (provided by source): `v26.0.2`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/vazir/metadata.json b/packages/vazir/metadata.json index a3d8e9b1448..a80158aaf0a 100644 --- a/packages/vazir/metadata.json +++ b/packages/vazir/metadata.json @@ -1 +1,18 @@ -{"fontId":"vazir","fontName":"Vazir","subsets":["all","farsi-digits","farsi-digits-without-latin","without-latin"],"weights":["100","300","400","500","700","900"],"styles":["normal"],"defSubset":"all","lastModified":"2020-08-02","version":"v26.0.2","source":"https://github.com/rastikerdar/vazir-font","license":"https://github.com/rastikerdar/vazir-font/blob/master/LICENSE","type":"other"} +{ + "fontId": "vazir", + "fontName": "Vazir", + "subsets": [ + "all", + "farsi-digits", + "farsi-digits-without-latin", + "without-latin" + ], + "weights": ["100", "300", "400", "500", "700", "900"], + "styles": ["normal"], + "defSubset": "all", + "lastModified": "2020-08-02", + "version": "v26.0.2", + "source": "https://github.com/rastikerdar/vazir-font", + "license": "https://github.com/rastikerdar/vazir-font/blob/master/LICENSE", + "type": "other" +} diff --git a/packages/vazir/package.json b/packages/vazir/package.json index 8f073198922..721ea75d0c5 100644 --- a/packages/vazir/package.json +++ b/packages/vazir/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vazir#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/vazir" } } diff --git a/packages/vesper-libre/package.json b/packages/vesper-libre/package.json index a196f21cc1d..fe979c4994b 100644 --- a/packages/vesper-libre/package.json +++ b/packages/vesper-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/vesper-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vesper-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/vesper-libre" + } } diff --git a/packages/viaoda-libre/package.json b/packages/viaoda-libre/package.json index e97d1c43cba..825e244a0f0 100644 --- a/packages/viaoda-libre/package.json +++ b/packages/viaoda-libre/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/viaoda-libre", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/viaoda-libre#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/viaoda-libre" + } } diff --git a/packages/vibes/package.json b/packages/vibes/package.json index e2449eccf90..ed958188bc6 100644 --- a/packages/vibes/package.json +++ b/packages/vibes/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/vibes", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vibes#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/vibes" + } } diff --git a/packages/vibur/package.json b/packages/vibur/package.json index 4d3a8d4e2eb..e0871987393 100644 --- a/packages/vibur/package.json +++ b/packages/vibur/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/vibur", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vibur#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/vibur" + } } diff --git a/packages/victor-mono/README.md b/packages/victor-mono/README.md index fe844f3b4c6..8abd84600c9 100644 --- a/packages/victor-mono/README.md +++ b/packages/victor-mono/README.md @@ -1,4 +1,5 @@ # Fontsource Victor Mono + [![npm version](https://badge.fury.io/js/fontsource-victor-mono.svg)](https://www.npmjs.com/package/fontsource-victor-mono) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-victor-mono)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-victor-mono)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “Victor Mono” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[latin,latin-oblique]` - Weights: `[100,200,300,400,500,600,700]` - Styles: `[italic,normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/rubjo/victor-mono) and [License](https://github Font version (provided by source): `v1.3.1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/victor-mono/metadata.json b/packages/victor-mono/metadata.json index bfa38a214a2..eddde9eaadd 100644 --- a/packages/victor-mono/metadata.json +++ b/packages/victor-mono/metadata.json @@ -1 +1,13 @@ -{"fontId":"victor-mono","fontName":"Victor Mono","subsets":["latin","latin-oblique"],"weights":["100","200","300","400","500","600","700"],"styles":["italic","normal"],"defSubset":"latin","lastModified":"2020-08-02","version":"v1.3.1","source":"https://github.com/rubjo/victor-mono","license":"https://github.com/rubjo/victor-mono/blob/master/LICENSE","type":"other"} +{ + "fontId": "victor-mono", + "fontName": "Victor Mono", + "subsets": ["latin", "latin-oblique"], + "weights": ["100", "200", "300", "400", "500", "600", "700"], + "styles": ["italic", "normal"], + "defSubset": "latin", + "lastModified": "2020-08-02", + "version": "v1.3.1", + "source": "https://github.com/rubjo/victor-mono", + "license": "https://github.com/rubjo/victor-mono/blob/master/LICENSE", + "type": "other" +} diff --git a/packages/victor-mono/package.json b/packages/victor-mono/package.json index 077ba862348..9ef43f602e1 100644 --- a/packages/victor-mono/package.json +++ b/packages/victor-mono/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/victor-mono#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/victor-mono" } } diff --git a/packages/vidaloka/package.json b/packages/vidaloka/package.json index 9e778523967..cdc836084dc 100644 --- a/packages/vidaloka/package.json +++ b/packages/vidaloka/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/vidaloka", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vidaloka#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/vidaloka" + } } diff --git a/packages/viga/package.json b/packages/viga/package.json index 812039d9559..a295435d14f 100644 --- a/packages/viga/package.json +++ b/packages/viga/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/viga", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/viga#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/viga" + } } diff --git a/packages/voces/package.json b/packages/voces/package.json index 1b6d45b2362..3dd54f526ec 100644 --- a/packages/voces/package.json +++ b/packages/voces/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/voces", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/voces#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/voces" + } } diff --git a/packages/volkhov/package.json b/packages/volkhov/package.json index 858aa1084e0..77f4decc6f1 100644 --- a/packages/volkhov/package.json +++ b/packages/volkhov/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/volkhov", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/volkhov#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/volkhov" + } } diff --git a/packages/vollkorn-sc/package.json b/packages/vollkorn-sc/package.json index 6dc03df6420..7376ccb5b25 100644 --- a/packages/vollkorn-sc/package.json +++ b/packages/vollkorn-sc/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/vollkorn-sc", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vollkorn-sc#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/vollkorn-sc" + } } diff --git a/packages/vollkorn/package.json b/packages/vollkorn/package.json index b3725cc5a70..32d396a84cd 100644 --- a/packages/vollkorn/package.json +++ b/packages/vollkorn/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/vollkorn", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vollkorn#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/vollkorn" + } } diff --git a/packages/voltaire/package.json b/packages/voltaire/package.json index b9bb53da54c..941e6699746 100644 --- a/packages/voltaire/package.json +++ b/packages/voltaire/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/voltaire", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/voltaire#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/voltaire" + } } diff --git a/packages/vt323/package.json b/packages/vt323/package.json index 66ca234b60c..ef187403876 100644 --- a/packages/vt323/package.json +++ b/packages/vt323/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/vt323", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/vt323#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/vt323" + } } diff --git a/packages/waiting-for-the-sunrise/package.json b/packages/waiting-for-the-sunrise/package.json index edf658ee580..01df15a52b5 100644 --- a/packages/waiting-for-the-sunrise/package.json +++ b/packages/waiting-for-the-sunrise/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/waiting-for-the-sunrise", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/waiting-for-the-sunrise#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/waiting-for-the-sunrise" + } } diff --git a/packages/wallpoet/package.json b/packages/wallpoet/package.json index bc985fb9574..ea69b1dfb5b 100644 --- a/packages/wallpoet/package.json +++ b/packages/wallpoet/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/wallpoet", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/wallpoet#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/wallpoet" + } } diff --git a/packages/walter-turncoat/package.json b/packages/walter-turncoat/package.json index 55d068dcddb..b16fb6f2c90 100644 --- a/packages/walter-turncoat/package.json +++ b/packages/walter-turncoat/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/walter-turncoat", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/walter-turncoat#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/walter-turncoat" + } } diff --git a/packages/warnes/package.json b/packages/warnes/package.json index 71fecd7e4e6..babc8d90d9b 100644 --- a/packages/warnes/package.json +++ b/packages/warnes/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/warnes", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/warnes#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/warnes" + } } diff --git a/packages/wellfleet/package.json b/packages/wellfleet/package.json index f56c1cc1a3a..c4205698c92 100644 --- a/packages/wellfleet/package.json +++ b/packages/wellfleet/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/wellfleet", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/wellfleet#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/wellfleet" + } } diff --git a/packages/wendy-one/package.json b/packages/wendy-one/package.json index 9e20e7b9739..bb9d11642b5 100644 --- a/packages/wendy-one/package.json +++ b/packages/wendy-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/wendy-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/wendy-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/wendy-one" + } } diff --git a/packages/wire-one/package.json b/packages/wire-one/package.json index cfde26cffa3..6adb144cb5f 100644 --- a/packages/wire-one/package.json +++ b/packages/wire-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/wire-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/wire-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/wire-one" + } } diff --git a/packages/work-sans/package.json b/packages/work-sans/package.json index 556d42d7be1..9c937265a0b 100644 --- a/packages/work-sans/package.json +++ b/packages/work-sans/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/work-sans", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/work-sans#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/work-sans" + } } diff --git a/packages/yakuhanjp/README.md b/packages/yakuhanjp/README.md index d727a7faf40..e394c385e7d 100644 --- a/packages/yakuhanjp/README.md +++ b/packages/yakuhanjp/README.md @@ -1,4 +1,5 @@ # Fontsource YakuHanJP + [![npm version](https://badge.fury.io/js/fontsource-yakuhanjp.svg)](https://www.npmjs.com/package/fontsource-yakuhanjp) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-yakuhanjp)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-yakuhanjp)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “YakuHanJP” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[japanese]` - Weights: `[100,200,300,400,500,700,900]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/qrac/yakuhanjp) and [License](https://github.co Font version (provided by source): `v3.3.1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/yakuhanjp/metadata.json b/packages/yakuhanjp/metadata.json index 66ab7051056..cb4d9edefa9 100644 --- a/packages/yakuhanjp/metadata.json +++ b/packages/yakuhanjp/metadata.json @@ -1 +1,13 @@ -{"fontId":"yakuhanjp","fontName":"YakuHanJP","subsets":["japanese"],"weights":["100","200","300","400","500","700","900"],"styles":["normal"],"defSubset":"japanese","lastModified":"2020-08-02","version":"v3.3.1","source":"https://github.com/qrac/yakuhanjp","license":"https://github.com/qrac/yakuhanjp#license","type":"other"} +{ + "fontId": "yakuhanjp", + "fontName": "YakuHanJP", + "subsets": ["japanese"], + "weights": ["100", "200", "300", "400", "500", "700", "900"], + "styles": ["normal"], + "defSubset": "japanese", + "lastModified": "2020-08-02", + "version": "v3.3.1", + "source": "https://github.com/qrac/yakuhanjp", + "license": "https://github.com/qrac/yakuhanjp#license", + "type": "other" +} diff --git a/packages/yakuhanjp/package.json b/packages/yakuhanjp/package.json index 06593ef4623..64dd63e93ff 100644 --- a/packages/yakuhanjp/package.json +++ b/packages/yakuhanjp/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yakuhanjp#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/yakuhanjp" } } diff --git a/packages/yakuhanjps/README.md b/packages/yakuhanjps/README.md index ca880200f7d..d248b547bb4 100644 --- a/packages/yakuhanjps/README.md +++ b/packages/yakuhanjps/README.md @@ -1,4 +1,5 @@ # Fontsource YakuHanJPs + [![npm version](https://badge.fury.io/js/fontsource-yakuhanjps.svg)](https://www.npmjs.com/package/fontsource-yakuhanjps) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-yakuhanjps)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-yakuhanjps)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “YakuHanJPs” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[japanese]` - Weights: `[100,200,300,400,500,700,900]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/qrac/yakuhanjp) and [License](https://github.co Font version (provided by source): `v3.3.1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/yakuhanjps/metadata.json b/packages/yakuhanjps/metadata.json index ec982883e1d..cd9bee8bf3e 100644 --- a/packages/yakuhanjps/metadata.json +++ b/packages/yakuhanjps/metadata.json @@ -1 +1,13 @@ -{"fontId":"yakuhanjps","fontName":"YakuHanJPs","subsets":["japanese"],"weights":["100","200","300","400","500","700","900"],"styles":["normal"],"defSubset":"japanese","lastModified":"2020-08-02","version":"v3.3.1","source":"https://github.com/qrac/yakuhanjp","license":"https://github.com/qrac/yakuhanjp#license","type":"other"} +{ + "fontId": "yakuhanjps", + "fontName": "YakuHanJPs", + "subsets": ["japanese"], + "weights": ["100", "200", "300", "400", "500", "700", "900"], + "styles": ["normal"], + "defSubset": "japanese", + "lastModified": "2020-08-02", + "version": "v3.3.1", + "source": "https://github.com/qrac/yakuhanjp", + "license": "https://github.com/qrac/yakuhanjp#license", + "type": "other" +} diff --git a/packages/yakuhanjps/package.json b/packages/yakuhanjps/package.json index bc59d9ceb76..f708ac67554 100644 --- a/packages/yakuhanjps/package.json +++ b/packages/yakuhanjps/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yakuhanjps#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/yakuhanjps" } } diff --git a/packages/yakuhanmp/README.md b/packages/yakuhanmp/README.md index 488e8cf63e9..431152f9adc 100644 --- a/packages/yakuhanmp/README.md +++ b/packages/yakuhanmp/README.md @@ -1,4 +1,5 @@ # Fontsource YakuHanMP + [![npm version](https://badge.fury.io/js/fontsource-yakuhanmp.svg)](https://www.npmjs.com/package/fontsource-yakuhanmp) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-yakuhanmp)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-yakuhanmp)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “YakuHanMP” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[japanese]` - Weights: `[100,200,300,400,500,700,900]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/qrac/yakuhanjp) and [License](https://github.co Font version (provided by source): `v3.3.1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/yakuhanmp/metadata.json b/packages/yakuhanmp/metadata.json index 952b01b5e02..cecbc97f740 100644 --- a/packages/yakuhanmp/metadata.json +++ b/packages/yakuhanmp/metadata.json @@ -1 +1,13 @@ -{"fontId":"yakuhanmp","fontName":"YakuHanMP","subsets":["japanese"],"weights":["100","200","300","400","500","700","900"],"styles":["normal"],"defSubset":"japanese","lastModified":"2020-08-02","version":"v3.3.1","source":"https://github.com/qrac/yakuhanjp","license":"https://github.com/qrac/yakuhanjp#license","type":"other"} +{ + "fontId": "yakuhanmp", + "fontName": "YakuHanMP", + "subsets": ["japanese"], + "weights": ["100", "200", "300", "400", "500", "700", "900"], + "styles": ["normal"], + "defSubset": "japanese", + "lastModified": "2020-08-02", + "version": "v3.3.1", + "source": "https://github.com/qrac/yakuhanjp", + "license": "https://github.com/qrac/yakuhanjp#license", + "type": "other" +} diff --git a/packages/yakuhanmp/package.json b/packages/yakuhanmp/package.json index e885434f3d2..b2365d063e6 100644 --- a/packages/yakuhanmp/package.json +++ b/packages/yakuhanmp/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yakuhanmp#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/yakuhanmp" } } diff --git a/packages/yakuhanmps/README.md b/packages/yakuhanmps/README.md index f8f30254771..0e1a858c846 100644 --- a/packages/yakuhanmps/README.md +++ b/packages/yakuhanmps/README.md @@ -1,4 +1,5 @@ # Fontsource YakuHanMPs + [![npm version](https://badge.fury.io/js/fontsource-yakuhanmps.svg)](https://www.npmjs.com/package/fontsource-yakuhanmps) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-yakuhanmps)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-yakuhanmps)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “YakuHanMPs” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[japanese]` - Weights: `[100,200,300,400,500,700,900]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/qrac/yakuhanjp) and [License](https://github.co Font version (provided by source): `v3.3.1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/yakuhanmps/metadata.json b/packages/yakuhanmps/metadata.json index 7e0c2f70cce..5ec6da2d2d3 100644 --- a/packages/yakuhanmps/metadata.json +++ b/packages/yakuhanmps/metadata.json @@ -1 +1,13 @@ -{"fontId":"yakuhanmps","fontName":"YakuHanMPs","subsets":["japanese"],"weights":["100","200","300","400","500","700","900"],"styles":["normal"],"defSubset":"japanese","lastModified":"2020-08-02","version":"v3.3.1","source":"https://github.com/qrac/yakuhanjp","license":"https://github.com/qrac/yakuhanjp#license","type":"other"} +{ + "fontId": "yakuhanmps", + "fontName": "YakuHanMPs", + "subsets": ["japanese"], + "weights": ["100", "200", "300", "400", "500", "700", "900"], + "styles": ["normal"], + "defSubset": "japanese", + "lastModified": "2020-08-02", + "version": "v3.3.1", + "source": "https://github.com/qrac/yakuhanjp", + "license": "https://github.com/qrac/yakuhanjp#license", + "type": "other" +} diff --git a/packages/yakuhanmps/package.json b/packages/yakuhanmps/package.json index 9453449a2fa..3763339f768 100644 --- a/packages/yakuhanmps/package.json +++ b/packages/yakuhanmps/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yakuhanmps#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/yakuhanmps" } } diff --git a/packages/yakuhanrp/README.md b/packages/yakuhanrp/README.md index 8ecfa5f2468..ba27a6e8784 100644 --- a/packages/yakuhanrp/README.md +++ b/packages/yakuhanrp/README.md @@ -1,4 +1,5 @@ # Fontsource YakuHanRP + [![npm version](https://badge.fury.io/js/fontsource-yakuhanrp.svg)](https://www.npmjs.com/package/fontsource-yakuhanrp) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-yakuhanrp)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-yakuhanrp)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “YakuHanRP” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[japanese]` - Weights: `[100,300,400,500,700,800,900]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/qrac/yakuhanjp) and [License](https://github.co Font version (provided by source): `v3.3.1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/yakuhanrp/metadata.json b/packages/yakuhanrp/metadata.json index b2c1da889bd..6e272970230 100644 --- a/packages/yakuhanrp/metadata.json +++ b/packages/yakuhanrp/metadata.json @@ -1 +1,13 @@ -{"fontId":"yakuhanrp","fontName":"YakuHanRP","subsets":["japanese"],"weights":["100","300","400","500","700","800","900"],"styles":["normal"],"defSubset":"japanese","lastModified":"2020-08-02","version":"v3.3.1","source":"https://github.com/qrac/yakuhanjp","license":"https://github.com/qrac/yakuhanjp#license","type":"other"} +{ + "fontId": "yakuhanrp", + "fontName": "YakuHanRP", + "subsets": ["japanese"], + "weights": ["100", "300", "400", "500", "700", "800", "900"], + "styles": ["normal"], + "defSubset": "japanese", + "lastModified": "2020-08-02", + "version": "v3.3.1", + "source": "https://github.com/qrac/yakuhanjp", + "license": "https://github.com/qrac/yakuhanjp#license", + "type": "other" +} diff --git a/packages/yakuhanrp/package.json b/packages/yakuhanrp/package.json index e92d1b7538c..8dfefa7885b 100644 --- a/packages/yakuhanrp/package.json +++ b/packages/yakuhanrp/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yakuhanrp#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/yakuhanrp" } } diff --git a/packages/yakuhanrps/README.md b/packages/yakuhanrps/README.md index 5be437b13e7..500253af585 100644 --- a/packages/yakuhanrps/README.md +++ b/packages/yakuhanrps/README.md @@ -1,4 +1,5 @@ # Fontsource YakuHanRPs + [![npm version](https://badge.fury.io/js/fontsource-yakuhanrps.svg)](https://www.npmjs.com/package/fontsource-yakuhanrps) [![Generic badge](https://img.shields.io/badge/fontsource-passing-brightgreen)](https://github.com/fontsource/fontsource) [![Monthly downloads](https://badgen.net/npm/dm/fontsource-yakuhanrps)](https://github.com/fontsource/fontsource) [![Total downloads](https://badgen.net/npm/dt/fontsource-yakuhanrps)](https://github.com/fontsource/fontsource) [![GitHub stars](https://img.shields.io/github/stars/fontsource/fontsource.svg?style=social&label=Star)](https://github.com/fontsource/fontsource/stargazers) The CSS and web font files to easily self-host the “YakuHanRPs” font. Please visit the main [Fontsource monorepo](https://github.com/fontsource/fontsource) to view more details on this package. @@ -35,6 +36,7 @@ Alternatively, the same solutions could be imported via SCSS! _These examples may not reflect actual compatibility. Please refer below._ Supported variables: + - Subsets: `[japanese]` - Weights: `[100,300,400,500,700,800,900]` - Styles: `[normal]` @@ -47,7 +49,7 @@ body { } ``` -## Licensing +## Licensing It is important to always read the license for every font that you use. Most of the fonts in the collection use the SIL Open Font License, v1.1. Some fonts use the Apache 2 license. The Ubuntu fonts use the Ubuntu Font License v1.0. @@ -59,4 +61,3 @@ Font [Source](https://github.com/qrac/yakuhanjp) and [License](https://github.co Font version (provided by source): `v3.3.1`. Feel free to star and contribute new ideas to this repository that aim to improve the performance of font loading, as well as expanding the existing library we already have. Any suggestions or ideas can be voiced via an [issue](https://github.com/fontsource/fontsource/issues). - diff --git a/packages/yakuhanrps/metadata.json b/packages/yakuhanrps/metadata.json index 2092564ee95..7d11ccff3e0 100644 --- a/packages/yakuhanrps/metadata.json +++ b/packages/yakuhanrps/metadata.json @@ -1 +1,13 @@ -{"fontId":"yakuhanrps","fontName":"YakuHanRPs","subsets":["japanese"],"weights":["100","300","400","500","700","800","900"],"styles":["normal"],"defSubset":"japanese","lastModified":"2020-08-02","version":"v3.3.1","source":"https://github.com/qrac/yakuhanjp","license":"https://github.com/qrac/yakuhanjp#license","type":"other"} +{ + "fontId": "yakuhanrps", + "fontName": "YakuHanRPs", + "subsets": ["japanese"], + "weights": ["100", "300", "400", "500", "700", "800", "900"], + "styles": ["normal"], + "defSubset": "japanese", + "lastModified": "2020-08-02", + "version": "v3.3.1", + "source": "https://github.com/qrac/yakuhanjp", + "license": "https://github.com/qrac/yakuhanjp#license", + "type": "other" +} diff --git a/packages/yakuhanrps/package.json b/packages/yakuhanrps/package.json index 8c98853896b..1bcb3fe8a6f 100644 --- a/packages/yakuhanrps/package.json +++ b/packages/yakuhanrps/package.json @@ -17,8 +17,8 @@ "license": "MIT", "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yakuhanrps#readme", "repository": { - "type" : "git", - "url" : "https://github.com/fontsource/fontsource.git", + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", "directory": "packages/yakuhanrps" } } diff --git a/packages/yanone-kaffeesatz/package.json b/packages/yanone-kaffeesatz/package.json index 8072ee08bb7..dcb08ee0d8d 100644 --- a/packages/yanone-kaffeesatz/package.json +++ b/packages/yanone-kaffeesatz/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/yanone-kaffeesatz", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yanone-kaffeesatz#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/yanone-kaffeesatz" + } } diff --git a/packages/yantramanav/package.json b/packages/yantramanav/package.json index db36b140051..8e20f0a6577 100644 --- a/packages/yantramanav/package.json +++ b/packages/yantramanav/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/yantramanav", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yantramanav#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/yantramanav" + } } diff --git a/packages/yatra-one/package.json b/packages/yatra-one/package.json index eba3c64599b..077e29a9399 100644 --- a/packages/yatra-one/package.json +++ b/packages/yatra-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/yatra-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yatra-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/yatra-one" + } } diff --git a/packages/yellowtail/package.json b/packages/yellowtail/package.json index 8a3deae0880..921f923762a 100644 --- a/packages/yellowtail/package.json +++ b/packages/yellowtail/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/yellowtail", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yellowtail#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/yellowtail" + } } diff --git a/packages/yeon-sung/package.json b/packages/yeon-sung/package.json index 5e2155eb87e..0ce313408b3 100644 --- a/packages/yeon-sung/package.json +++ b/packages/yeon-sung/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/yeon-sung", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yeon-sung#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/yeon-sung" + } } diff --git a/packages/yeseva-one/package.json b/packages/yeseva-one/package.json index a09967308a4..284059b801a 100644 --- a/packages/yeseva-one/package.json +++ b/packages/yeseva-one/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/yeseva-one", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yeseva-one#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/yeseva-one" + } } diff --git a/packages/yesteryear/package.json b/packages/yesteryear/package.json index 89f6979a62b..23779dce504 100644 --- a/packages/yesteryear/package.json +++ b/packages/yesteryear/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/yesteryear", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yesteryear#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/yesteryear" + } } diff --git a/packages/yrsa/package.json b/packages/yrsa/package.json index 82b5f080c5c..592c63f4a14 100644 --- a/packages/yrsa/package.json +++ b/packages/yrsa/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/yrsa", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/yrsa#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/yrsa" + } } diff --git a/packages/zcool-kuaile/package.json b/packages/zcool-kuaile/package.json index 580b26d2004..2556731c0c0 100644 --- a/packages/zcool-kuaile/package.json +++ b/packages/zcool-kuaile/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/zcool-kuaile", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/zcool-kuaile#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/zcool-kuaile" + } } diff --git a/packages/zcool-qingke-huangyou/package.json b/packages/zcool-qingke-huangyou/package.json index f2036ee4bbc..7be892165f3 100644 --- a/packages/zcool-qingke-huangyou/package.json +++ b/packages/zcool-qingke-huangyou/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/zcool-qingke-huangyou", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/zcool-qingke-huangyou#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/zcool-qingke-huangyou" + } } diff --git a/packages/zcool-xiaowei/package.json b/packages/zcool-xiaowei/package.json index abf3eeec779..b90d9a3f756 100644 --- a/packages/zcool-xiaowei/package.json +++ b/packages/zcool-xiaowei/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/zcool-xiaowei", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/zcool-xiaowei#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/zcool-xiaowei" + } } diff --git a/packages/zeyada/package.json b/packages/zeyada/package.json index 487ea530c5a..fbe5de4ea47 100644 --- a/packages/zeyada/package.json +++ b/packages/zeyada/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/zeyada", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/zeyada#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/zeyada" + } } diff --git a/packages/zhi-mang-xing/package.json b/packages/zhi-mang-xing/package.json index 482c3b5380a..34d314e5393 100644 --- a/packages/zhi-mang-xing/package.json +++ b/packages/zhi-mang-xing/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/zhi-mang-xing", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/zhi-mang-xing#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/zhi-mang-xing" + } } diff --git a/packages/zilla-slab-highlight/package.json b/packages/zilla-slab-highlight/package.json index 04b52f9f7b7..2a6d34066ca 100644 --- a/packages/zilla-slab-highlight/package.json +++ b/packages/zilla-slab-highlight/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/zilla-slab-highlight", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/zilla-slab-highlight#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/zilla-slab-highlight" + } } diff --git a/packages/zilla-slab/package.json b/packages/zilla-slab/package.json index d60b9a30ceb..6bb1735b1a1 100644 --- a/packages/zilla-slab/package.json +++ b/packages/zilla-slab/package.json @@ -13,6 +13,10 @@ ], "author": "Lotus ", "license": "MIT", - "repository": "https://github.com/DecliningLotus/fontsource/tree/master/packages/zilla-slab", - "gitHead": "5a7131094483365077f575a9da00a78be3c83891" + "homepage": "https://github.com/fontsource/fontsource/tree/master/packages/zilla-slab#readme", + "repository": { + "type": "git", + "url": "https://github.com/fontsource/fontsource.git", + "directory": "packages/zilla-slab" + } }