├── .github └── ISSUE_TEMPLATE │ ├── item-report.md │ └── item_issue_report.yml ├── .gitignore ├── LICENSE ├── README.md ├── bun.lock ├── data ├── collections │ ├── animal_facts.json │ ├── cities_of_the_world.json │ ├── european_supercars.json │ ├── mihoyo.json │ ├── n_sfw.com.json │ ├── new_marketplace_updates.json │ ├── red_dead.json │ ├── seasons.json │ └── seven_wonders_of_the_world.json ├── featured.json ├── photo_packs │ ├── crunchyroll_hime.json │ ├── dark.json │ ├── ferrari.json │ ├── formula1.json │ ├── genshin.json │ ├── halloween.json │ ├── istanbul.json │ ├── lamborghini.json │ ├── london.json │ ├── los_angeles.json │ ├── low_poly.json │ ├── n_sfw_com_bunny_girl.json │ ├── n_sfw_com_charlotte.json │ ├── n_sfw_com_date_a_live.json │ ├── n_sfw_com_death_note.json │ ├── n_sfw_com_demon_slayer.json │ ├── n_sfw_com_haikyu.json │ ├── n_sfw_com_hxh.json │ ├── n_sfw_com_kakegurui.json │ ├── n_sfw_com_konosuba.json │ ├── n_sfw_com_kumi.json │ ├── n_sfw_com_naruto.json │ ├── n_sfw_com_noragami.json │ ├── n_sfw_com_one_piece.json │ ├── n_sfw_com_rag.json │ ├── n_sfw_com_sakurasou.json │ ├── n_sfw_com_sao.json │ ├── n_sfw_com_sds.json │ ├── n_sfw_com_spy_x_family.json │ ├── n_sfw_com_takagi_san.json │ ├── n_sfw_com_toradora.json │ ├── n_sfw_com_your_name.json │ ├── new_york_city.json │ ├── paris.json │ ├── porsche.json │ ├── rome.json │ ├── san_francisco.json │ ├── singapore.json │ ├── sky_perspective.json │ ├── summer.json │ ├── sydney.json │ ├── taj_mahal.json │ ├── tears_of_themis.json │ ├── tokyo.json │ ├── vocauk.json │ └── winter.json ├── preset_settings │ ├── basic_vanilla.json │ ├── nord.json │ └── roorays_settings.json └── quote_packs │ ├── 100_movie_quotes.json │ ├── 100_video_games_quotes.json │ ├── bird_facts.json │ ├── captain_holt.json │ ├── cat_facts.json │ ├── default_quotes.json │ ├── digital_stoicism.json │ ├── dog_facts.json │ ├── fox_facts.json │ ├── iconic_football_quotes.json │ ├── koala_facts.json │ ├── mustafa_kemal_ataturk_quotes.json │ ├── panda_facts.json │ ├── philosophy_quotes.json │ ├── productivity_quotes.json │ ├── red_dead_quotes.json │ ├── star_wars_quotes.json │ └── ted_lasso_quotes.json ├── examples ├── photo_pack.json ├── preset_settings.json └── quote_pack.json ├── package.json ├── pnpm-lock.yaml ├── scripts ├── bundle.ts ├── cache.ts ├── config.ts ├── types.ts └── utils.ts ├── tests ├── integration.test.ts └── utils.test.ts ├── tsconfig.json └── vitest.config.ts /.github/ISSUE_TEMPLATE/item-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/.github/ISSUE_TEMPLATE/item-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/item_issue_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/.github/ISSUE_TEMPLATE/item_issue_report.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/README.md -------------------------------------------------------------------------------- /bun.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/bun.lock -------------------------------------------------------------------------------- /data/collections/animal_facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/collections/animal_facts.json -------------------------------------------------------------------------------- /data/collections/cities_of_the_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/collections/cities_of_the_world.json -------------------------------------------------------------------------------- /data/collections/european_supercars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/collections/european_supercars.json -------------------------------------------------------------------------------- /data/collections/mihoyo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/collections/mihoyo.json -------------------------------------------------------------------------------- /data/collections/n_sfw.com.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/collections/n_sfw.com.json -------------------------------------------------------------------------------- /data/collections/new_marketplace_updates.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/collections/new_marketplace_updates.json -------------------------------------------------------------------------------- /data/collections/red_dead.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/collections/red_dead.json -------------------------------------------------------------------------------- /data/collections/seasons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/collections/seasons.json -------------------------------------------------------------------------------- /data/collections/seven_wonders_of_the_world.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/collections/seven_wonders_of_the_world.json -------------------------------------------------------------------------------- /data/featured.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/featured.json -------------------------------------------------------------------------------- /data/photo_packs/crunchyroll_hime.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/crunchyroll_hime.json -------------------------------------------------------------------------------- /data/photo_packs/dark.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/dark.json -------------------------------------------------------------------------------- /data/photo_packs/ferrari.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/ferrari.json -------------------------------------------------------------------------------- /data/photo_packs/formula1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/formula1.json -------------------------------------------------------------------------------- /data/photo_packs/genshin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/genshin.json -------------------------------------------------------------------------------- /data/photo_packs/halloween.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/halloween.json -------------------------------------------------------------------------------- /data/photo_packs/istanbul.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/istanbul.json -------------------------------------------------------------------------------- /data/photo_packs/lamborghini.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/lamborghini.json -------------------------------------------------------------------------------- /data/photo_packs/london.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/london.json -------------------------------------------------------------------------------- /data/photo_packs/los_angeles.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/los_angeles.json -------------------------------------------------------------------------------- /data/photo_packs/low_poly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/low_poly.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_bunny_girl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_bunny_girl.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_charlotte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_charlotte.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_date_a_live.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_date_a_live.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_death_note.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_death_note.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_demon_slayer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_demon_slayer.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_haikyu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_haikyu.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_hxh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_hxh.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_kakegurui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_kakegurui.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_konosuba.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_konosuba.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_kumi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_kumi.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_naruto.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_naruto.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_noragami.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_noragami.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_one_piece.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_one_piece.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_rag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_rag.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_sakurasou.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_sakurasou.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_sao.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_sao.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_sds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_sds.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_spy_x_family.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_spy_x_family.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_takagi_san.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_takagi_san.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_toradora.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_toradora.json -------------------------------------------------------------------------------- /data/photo_packs/n_sfw_com_your_name.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/n_sfw_com_your_name.json -------------------------------------------------------------------------------- /data/photo_packs/new_york_city.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/new_york_city.json -------------------------------------------------------------------------------- /data/photo_packs/paris.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/paris.json -------------------------------------------------------------------------------- /data/photo_packs/porsche.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/porsche.json -------------------------------------------------------------------------------- /data/photo_packs/rome.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/rome.json -------------------------------------------------------------------------------- /data/photo_packs/san_francisco.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/san_francisco.json -------------------------------------------------------------------------------- /data/photo_packs/singapore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/singapore.json -------------------------------------------------------------------------------- /data/photo_packs/sky_perspective.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/sky_perspective.json -------------------------------------------------------------------------------- /data/photo_packs/summer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/summer.json -------------------------------------------------------------------------------- /data/photo_packs/sydney.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/sydney.json -------------------------------------------------------------------------------- /data/photo_packs/taj_mahal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/taj_mahal.json -------------------------------------------------------------------------------- /data/photo_packs/tears_of_themis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/tears_of_themis.json -------------------------------------------------------------------------------- /data/photo_packs/tokyo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/tokyo.json -------------------------------------------------------------------------------- /data/photo_packs/vocauk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/vocauk.json -------------------------------------------------------------------------------- /data/photo_packs/winter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/photo_packs/winter.json -------------------------------------------------------------------------------- /data/preset_settings/basic_vanilla.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/preset_settings/basic_vanilla.json -------------------------------------------------------------------------------- /data/preset_settings/nord.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/preset_settings/nord.json -------------------------------------------------------------------------------- /data/preset_settings/roorays_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/preset_settings/roorays_settings.json -------------------------------------------------------------------------------- /data/quote_packs/100_movie_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/100_movie_quotes.json -------------------------------------------------------------------------------- /data/quote_packs/100_video_games_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/100_video_games_quotes.json -------------------------------------------------------------------------------- /data/quote_packs/bird_facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/bird_facts.json -------------------------------------------------------------------------------- /data/quote_packs/captain_holt.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/captain_holt.json -------------------------------------------------------------------------------- /data/quote_packs/cat_facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/cat_facts.json -------------------------------------------------------------------------------- /data/quote_packs/default_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/default_quotes.json -------------------------------------------------------------------------------- /data/quote_packs/digital_stoicism.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/digital_stoicism.json -------------------------------------------------------------------------------- /data/quote_packs/dog_facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/dog_facts.json -------------------------------------------------------------------------------- /data/quote_packs/fox_facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/fox_facts.json -------------------------------------------------------------------------------- /data/quote_packs/iconic_football_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/iconic_football_quotes.json -------------------------------------------------------------------------------- /data/quote_packs/koala_facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/koala_facts.json -------------------------------------------------------------------------------- /data/quote_packs/mustafa_kemal_ataturk_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/mustafa_kemal_ataturk_quotes.json -------------------------------------------------------------------------------- /data/quote_packs/panda_facts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/panda_facts.json -------------------------------------------------------------------------------- /data/quote_packs/philosophy_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/philosophy_quotes.json -------------------------------------------------------------------------------- /data/quote_packs/productivity_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/productivity_quotes.json -------------------------------------------------------------------------------- /data/quote_packs/red_dead_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/red_dead_quotes.json -------------------------------------------------------------------------------- /data/quote_packs/star_wars_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/star_wars_quotes.json -------------------------------------------------------------------------------- /data/quote_packs/ted_lasso_quotes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/data/quote_packs/ted_lasso_quotes.json -------------------------------------------------------------------------------- /examples/photo_pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/examples/photo_pack.json -------------------------------------------------------------------------------- /examples/preset_settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/examples/preset_settings.json -------------------------------------------------------------------------------- /examples/quote_pack.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/examples/quote_pack.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/bundle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/scripts/bundle.ts -------------------------------------------------------------------------------- /scripts/cache.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/scripts/cache.ts -------------------------------------------------------------------------------- /scripts/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/scripts/config.ts -------------------------------------------------------------------------------- /scripts/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/scripts/types.ts -------------------------------------------------------------------------------- /scripts/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/scripts/utils.ts -------------------------------------------------------------------------------- /tests/integration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/tests/integration.test.ts -------------------------------------------------------------------------------- /tests/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/tests/utils.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/tsconfig.json -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mue/marketplace/HEAD/vitest.config.ts --------------------------------------------------------------------------------