File tree Expand file tree Collapse file tree 5 files changed +60
-8
lines changed
Expand file tree Collapse file tree 5 files changed +60
-8
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " github-readme-stats" ,
33 "version" : " 1.0.0" ,
4- "description" : " Dynamically generate stats for your github readmes" ,
5- "main" : " index.js" ,
4+ "description" : " Dynamically generate stats for your GitHub readme" ,
5+ "keywords" : [
6+ " github-readme-stats" ,
7+ " readme-stats" ,
8+ " cards" ,
9+ " card-generator"
10+ ],
11+ "main" : " src/index.js" ,
612 "type" : " module" ,
13+ "homepage" : " https://github.com/anuraghazra/github-readme-stats" ,
14+ "bugs" : {
15+ "url" : " https://github.com/anuraghazra/github-readme-stats/issues"
16+ },
17+ "repository" : {
18+ "type" : " git" ,
19+ "url" : " https://github.com/anuraghazra/github-readme-stats.git"
20+ },
721 "scripts" : {
822 "test" : " node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage" ,
923 "test:watch" : " node --experimental-vm-modules node_modules/jest/bin/jest.js --watch" ,
Original file line number Diff line number Diff line change 1+ export { renderRepoCard } from "./repo-card.js" ;
2+ export { renderStatsCard } from "./stats-card.js" ;
3+ export { renderTopLanguages } from "./top-languages-card.js" ;
4+ export { renderWakatimeCard } from "./wakatime-card.js" ;
Original file line number Diff line number Diff line change 1+ export { blacklist } from "./blacklist.js" ;
2+ export { Card } from "./Card.js" ;
3+ export { createProgressNode } from "./createProgressNode.js" ;
4+ export { i18n } from "./i18n.js" ;
5+ export { icons } from "./icons.js" ;
6+ export { retryer } from "./retryer.js" ;
7+ export {
8+ ERROR_CARD_LENGTH ,
9+ renderError ,
10+ encodeHTML ,
11+ kFormatter ,
12+ isValidHexColor ,
13+ parseBoolean ,
14+ parseArray ,
15+ clampValue ,
16+ isValidGradient ,
17+ fallbackColor ,
18+ request ,
19+ flexLayout ,
20+ getCardColors ,
21+ wrapTextMultiline ,
22+ logger ,
23+ CONSTANTS ,
24+ CustomError ,
25+ MissingParamError ,
26+ measureText ,
27+ lowercaseTrim ,
28+ chunkArray ,
29+ parseEmojis ,
30+ } from "./utils.js" ;
Original file line number Diff line number Diff line change @@ -414,25 +414,26 @@ function parseEmojis(str) {
414414}
415415
416416export {
417+ ERROR_CARD_LENGTH ,
417418 renderError ,
418- kFormatter ,
419419 encodeHTML ,
420+ kFormatter ,
420421 isValidHexColor ,
421- request ,
422- parseArray ,
423422 parseBoolean ,
423+ parseArray ,
424+ clampValue ,
425+ isValidGradient ,
424426 fallbackColor ,
427+ request ,
425428 flexLayout ,
426429 getCardColors ,
427- clampValue ,
428430 wrapTextMultiline ,
429- measureText ,
430431 logger ,
431432 CONSTANTS ,
432433 CustomError ,
433434 MissingParamError ,
435+ measureText ,
434436 lowercaseTrim ,
435437 chunkArray ,
436438 parseEmojis ,
437- ERROR_CARD_LENGTH ,
438439} ;
Original file line number Diff line number Diff line change 1+ export * from "./common/index.js" ;
2+ export * from "./cards/index.js" ;
3+ export { getStyles , getAnimations } from "./getStyles.js" ;
You can’t perform that action at this time.
0 commit comments