├── .npmrc
├── static
├── favicon
│ ├── favicon.ico
│ ├── favicon-16x16.png
│ ├── favicon-32x32.png
│ ├── apple-touch-icon.png
│ ├── android-chrome-192x192.png
│ ├── android-chrome-512x512.png
│ ├── site.webmanifest
│ └── about.txt
├── fonts
│ └── firacode.ttf
└── images
│ └── san-felipe-del-morro-castle.jpg
├── .gitignore
├── .prettierrc
├── src
├── lib
│ ├── index.js
│ ├── site
│ │ └── san-felipe-del-morro-castle.jpg
│ └── components
│ │ ├── Picture.svelte
│ │ └── Image.svelte
├── routes
│ ├── __layout.svelte
│ └── index.svelte.md
├── app.html
└── app.css
├── jsconfig.json
├── .eslintrc.cjs
├── svelte.config.js
├── CHANGELOG.md
├── LICENSE
├── mdsvex.config.js
├── package.json
└── README.md
/.npmrc:
--------------------------------------------------------------------------------
1 | engine-strict=true
2 |
--------------------------------------------------------------------------------
/static/favicon/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sawyerclick/svelte-lazy-loader/HEAD/static/favicon/favicon.ico
--------------------------------------------------------------------------------
/static/fonts/firacode.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sawyerclick/svelte-lazy-loader/HEAD/static/fonts/firacode.ttf
--------------------------------------------------------------------------------
/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 | node_modules
3 | /build
4 | /.svelte-kit
5 | /package
6 | .env
7 | .env.*
8 | !.env.example
9 |
--------------------------------------------------------------------------------
/.prettierrc:
--------------------------------------------------------------------------------
1 | {
2 | "useTabs": true,
3 | "singleQuote": true,
4 | "trailingComma": "none",
5 | "printWidth": 100
6 | }
7 |
--------------------------------------------------------------------------------
/static/favicon/favicon-16x16.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sawyerclick/svelte-lazy-loader/HEAD/static/favicon/favicon-16x16.png
--------------------------------------------------------------------------------
/static/favicon/favicon-32x32.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sawyerclick/svelte-lazy-loader/HEAD/static/favicon/favicon-32x32.png
--------------------------------------------------------------------------------
/static/favicon/apple-touch-icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sawyerclick/svelte-lazy-loader/HEAD/static/favicon/apple-touch-icon.png
--------------------------------------------------------------------------------
/static/favicon/android-chrome-192x192.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sawyerclick/svelte-lazy-loader/HEAD/static/favicon/android-chrome-192x192.png
--------------------------------------------------------------------------------
/static/favicon/android-chrome-512x512.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sawyerclick/svelte-lazy-loader/HEAD/static/favicon/android-chrome-512x512.png
--------------------------------------------------------------------------------
/src/lib/index.js:
--------------------------------------------------------------------------------
1 | export { default as Image } from './components/Image.svelte';
2 |
3 | export { default as Picture } from './components/Picture.svelte';
4 |
--------------------------------------------------------------------------------
/src/lib/site/san-felipe-del-morro-castle.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sawyerclick/svelte-lazy-loader/HEAD/src/lib/site/san-felipe-del-morro-castle.jpg
--------------------------------------------------------------------------------
/static/images/san-felipe-del-morro-castle.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sawyerclick/svelte-lazy-loader/HEAD/static/images/san-felipe-del-morro-castle.jpg
--------------------------------------------------------------------------------
/jsconfig.json:
--------------------------------------------------------------------------------
1 | {
2 | "compilerOptions": {
3 | "baseUrl": ".",
4 | "paths": {
5 | "$lib": ["src/lib"],
6 | "$lib/*": ["src/lib/*"]
7 | }
8 | },
9 | "include": ["src/**/*.d.ts", "src/**/*.js", "src/**/*.svelte"]
10 | }
11 |
--------------------------------------------------------------------------------
/static/favicon/site.webmanifest:
--------------------------------------------------------------------------------
1 | {"name":"","short_name":"","icons":[{"src":"favicon/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"favicon/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
--------------------------------------------------------------------------------
/.eslintrc.cjs:
--------------------------------------------------------------------------------
1 | module.exports = {
2 | root: true,
3 | extends: ['eslint:recommended', 'prettier'],
4 | plugins: ['svelte3'],
5 | overrides: [{ files: ['*.svelte'], processor: 'svelte3/svelte3' }],
6 | parserOptions: {
7 | sourceType: 'module',
8 | ecmaVersion: 2020
9 | },
10 | env: {
11 | browser: true,
12 | es2017: true,
13 | node: true
14 | }
15 | };
16 |
--------------------------------------------------------------------------------
/static/favicon/about.txt:
--------------------------------------------------------------------------------
1 | This favicon was generated using the following graphics from Twitter Twemoji:
2 |
3 | - Graphics Title: 1f9a5.svg
4 | - Graphics Author: Copyright 2020 Twitter, Inc and other contributors (https://github.com/twitter/twemoji)
5 | - Graphics Source: https://github.com/twitter/twemoji/blob/master/assets/svg/1f9a5.svg
6 | - Graphics License: CC-BY 4.0 (https://creativecommons.org/licenses/by/4.0/)
7 |
--------------------------------------------------------------------------------
/src/routes/__layout.svelte:
--------------------------------------------------------------------------------
1 |
8 |
9 |