<html lang="en">
<head></head>
<body>

<form id="mainForm" method="post" action="https://stackblitz.com/run" target="_self">
<input type="hidden" name="project[files][CHANGELOG.md]" value="# @example/svelte-social-share-links/svelte-kit

## 0.1.2

### Patch Changes

- a307d76: updated dependencies

## 0.1.1

### Patch Changes

- bf3a9b1: Updated various aspects of the monorepo (fixed typed-events dependency)

## 0.1.0

### Minor Changes

- 048c5cf: Created svelte-social-share component library with web component export
">
<input type="hidden" name="project[files][README.md]" value="# sv

Everything you need to build a Svelte project, powered by [`sv`](https://github.com/sveltejs/cli).

## Creating a project

If you&#39;re seeing this, you&#39;ve probably already done this step. Congrats!

```sh
# create a new project in the current directory
npx sv create

# create a new project in my-app
npx sv create my-app
```

## Developing

Once you&#39;ve created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:

```sh
npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open
```

## Building

To create a production version of your app:

```sh
npm run build
```

You can preview the production build with `npm run preview`.

&gt; To deploy your app, you may need to install an [adapter](https://svelte.dev/docs/kit/adapters) for your target environment.
">
<input type="hidden" name="project[files][package.json]" value="{&quot;name&quot;:&quot;@example/svelte-social-share-links/svelte-kit&quot;,&quot;version&quot;:&quot;0.1.2&quot;,&quot;private&quot;:true,&quot;type&quot;:&quot;module&quot;,&quot;scripts&quot;:{&quot;build&quot;:&quot;vite build&quot;,&quot;check&quot;:&quot;svelte-kit sync &amp;&amp; svelte-check --tsconfig ./tsconfig.json&quot;,&quot;check:watch&quot;:&quot;svelte-kit sync &amp;&amp; svelte-check --tsconfig ./tsconfig.json --watch&quot;,&quot;dev&quot;:&quot;vite dev&quot;,&quot;prepare&quot;:&quot;svelte-kit sync || echo &#39;&#39;&quot;,&quot;preview&quot;:&quot;vite preview&quot;},&quot;devDependencies&quot;:{&quot;@stephansama/svelte-social-share-links&quot;:&quot;https://pkg.pr.new/stephansama/packages/@stephansama/svelte-social-share-links@921bce0&quot;,&quot;@sveltejs/adapter-static&quot;:&quot;^3.0.10&quot;,&quot;@sveltejs/kit&quot;:&quot;^2.52.0&quot;,&quot;@sveltejs/vite-plugin-svelte&quot;:&quot;^6.2.4&quot;,&quot;svelte&quot;:&quot;^5.51.2&quot;,&quot;svelte-check&quot;:&quot;^4.4.0&quot;,&quot;typescript&quot;:&quot;^5.9.3&quot;,&quot;vite&quot;:&quot;^7.3.1&quot;}}">
<input type="hidden" name="project[files][svelte.config.js]" value="import adapter from &quot;@sveltejs/adapter-static&quot;;
import { vitePreprocess } from &quot;@sveltejs/vite-plugin-svelte&quot;;

/** @type {import(&quot;@sveltejs/kit&quot;).Config} */
const config = {
	kit: {
		adapter: adapter({ assets: &quot;dist&quot;, pages: &quot;dist&quot; }),
	},

	preprocess: vitePreprocess(),
};

export default config;
">
<input type="hidden" name="project[files][tsconfig.json]" value="{
	&quot;extends&quot;: &quot;./.svelte-kit/tsconfig.json&quot;,
	&quot;compilerOptions&quot;: {
		&quot;allowJs&quot;: true,
		&quot;checkJs&quot;: true,
		&quot;esModuleInterop&quot;: true,
		&quot;forceConsistentCasingInFileNames&quot;: true,
		&quot;resolveJsonModule&quot;: true,
		&quot;skipLibCheck&quot;: true,
		&quot;sourceMap&quot;: true,
		&quot;strict&quot;: true,
		&quot;moduleResolution&quot;: &quot;bundler&quot;
	}
	// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
	// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
	//
	// To make changes to top-level options such as include and exclude, we recommend extending
	// the generated config; see https://svelte.dev/docs/kit/configuration#typescript
}
">
<input type="hidden" name="project[files][vite.config.ts]" value="import { sveltekit } from &#39;@sveltejs/kit/vite&#39;;
import { defineConfig } from &#39;vite&#39;;

export default defineConfig({
	plugins: [sveltekit()]
});
">
<input type="hidden" name="project[files][.svelte-kit/ambient.d.ts]" value="
// this file is generated — do not edit it


/// &lt;reference types=&quot;@sveltejs/kit&quot; /&gt;

/**
 * Environment variables [loaded by Vite](https://vitejs.dev/guide/env-and-mode.html#env-files) from `.env` files and `process.env`. Like [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), this module cannot be imported into client-side code. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/configuration#env) (if configured).
 * 
 * _Unlike_ [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), the values exported from this module are statically injected into your bundle at build time, enabling optimisations like dead code elimination.
 * 
 * ```ts
 * import { API_KEY } from &#39;$env/static/private&#39;;
 * ```
 * 
 * Note that all environment variables referenced in your code should be declared (for example in an `.env` file), even if they don&#39;t have a value until the app is deployed:
 * 
 * ```
 * MY_FEATURE_FLAG=&quot;&quot;
 * ```
 * 
 * You can override `.env` values from the command line like so:
 * 
 * ```sh
 * MY_FEATURE_FLAG=&quot;enabled&quot; npm run dev
 * ```
 */
declare module &#39;$env/static/private&#39; {
	export const GITHUB_TOKEN: string;
	export const GITHUB_STATE: string;
	export const CODECOV_TOKEN: string;
	export const DOTNET_NOLOGO: string;
	export const USER: string;
	export const npm_config_user_agent: string;
	export const JSR_AUTH_TOKEN: string;
	export const CI: string;
	export const USE_BAZEL_FALLBACK_VERSION: string;
	export const RUNNER_ENVIRONMENT: string;
	export const GITHUB_ENV: string;
	export const PIPX_HOME: string;
	export const npm_node_execpath: string;
	export const JAVA_HOME_8_X64: string;
	export const NODE_AUTH_TOKEN: string;
	export const SHLVL: string;
	export const HOME: string;
	export const RUNNER_TEMP: string;
	export const GITHUB_EVENT_PATH: string;
	export const npm_package_json: string;
	export const JAVA_HOME_11_X64: string;
	export const PIPX_BIN_DIR: string;
	export const GITHUB_REPOSITORY_OWNER: string;
	export const npm_config_auto_install_peers: string;
	export const npm_config_cleanup_unused_catalogs: string;
	export const npm_config_shell_emulator: string;
	export const GRADLE_HOME: string;
	export const ANDROID_NDK_LATEST_HOME: string;
	export const JAVA_HOME_21_X64: string;
	export const GITHUB_RETENTION_DAYS: string;
	export const GITHUB_REPOSITORY_OWNER_ID: string;
	export const POWERSHELL_DISTRIBUTION_CHANNEL: string;
	export const AZURE_EXTENSION_DIR: string;
	export const GITHUB_HEAD_REF: string;
	export const npm_config_userconfig: string;
	export const SYSTEMD_EXEC_PID: string;
	export const DO_NOT_TRACK: string;
	export const ACTIONS_ORCHESTRATION_ID: string;
	export const npm_config_engine_strict: string;
	export const GITHUB_GRAPHQL_URL: string;
	export const JAVA_HOME_25_X64: string;
	export const NVM_DIR: string;
	export const npm_config_catalogs: string;
	export const DOTNET_SKIP_FIRST_TIME_EXPERIENCE: string;
	export const JAVA_HOME_17_X64: string;
	export const ImageVersion: string;
	export const LOGNAME: string;
	export const RUNNER_OS: string;
	export const GITHUB_API_URL: string;
	export const GOROOT_1_22_X64: string;
	export const SWIFT_PATH: string;
	export const npm_config_catalog: string;
	export const pnpm_config_verify_deps_before_run: string;
	export const CHROMEWEBDRIVER: string;
	export const GOROOT_1_23_X64: string;
	export const JOURNAL_STREAM: string;
	export const GITHUB_WORKFLOW: string;
	export const _: string;
	export const MEMORY_PRESSURE_WATCH: string;
	export const GOROOT_1_24_X64: string;
	export const npm_config_registry: string;
	export const ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE: string;
	export const GOROOT_1_25_X64: string;
	export const GITHUB_RUN_ID: string;
	export const GITHUB_REF_TYPE: string;
	export const BOOTSTRAP_HASKELL_NONINTERACTIVE: string;
	export const GITHUB_WORKFLOW_SHA: string;
	export const GITHUB_BASE_REF: string;
	export const ImageOS: string;
	export const GITHUB_WORKFLOW_REF: string;
	export const ACTIONS_ID_TOKEN_REQUEST_TOKEN: string;
	export const GITHUB_ACTION_REPOSITORY: string;
	export const ENABLE_RUNNER_TRACING: string;
	export const npm_config_node_gyp: string;
	export const PATH: string;
	export const ANT_HOME: string;
	export const DOTNET_MULTILEVEL_LOOKUP: string;
	export const RUNNER_TRACKING_ID: string;
	export const INVOCATION_ID: string;
	export const NPM_CONFIG_USERCONFIG: string;
	export const RUNNER_TOOL_CACHE: string;
	export const npm_package_name: string;
	export const NODE: string;
	export const GITHUB_ACTION: string;
	export const GITHUB_RUN_NUMBER: string;
	export const GITHUB_TRIGGERING_ACTOR: string;
	export const RUNNER_ARCH: string;
	export const XDG_RUNTIME_DIR: string;
	export const AGENT_TOOLSDIRECTORY: string;
	export const npm_config_frozen_lockfile: string;
	export const TURBO_TEAM: string;
	export const ZX_VERBOSE: string;
	export const LANG: string;
	export const VCPKG_INSTALLATION_ROOT: string;
	export const npm_config_catalog_mode: string;
	export const CONDA: string;
	export const RUNNER_NAME: string;
	export const XDG_CONFIG_HOME: string;
	export const GITHUB_REF_NAME: string;
	export const GITHUB_REPOSITORY: string;
	export const npm_lifecycle_script: string;
	export const ANDROID_NDK_ROOT: string;
	export const GITHUB_ACTION_REF: string;
	export const DEBIAN_FRONTEND: string;
	export const SHELL: string;
	export const GITHUB_REPOSITORY_ID: string;
	export const GITHUB_ACTIONS: string;
	export const NODE_PATH: string;
	export const npm_package_version: string;
	export const npm_lifecycle_event: string;
	export const npm_config_verify_deps_before_run: string;
	export const GITHUB_REF_PROTECTED: string;
	export const GITHUB_WORKSPACE: string;
	export const ACCEPT_EULA: string;
	export const GITHUB_JOB: string;
	export const npm_config_npm_globalconfig: string;
	export const npm_config_overrides: string;
	export const GITHUB_SHA: string;
	export const GITHUB_RUN_ATTEMPT: string;
	export const GITHUB_REF: string;
	export const GITHUB_ACTOR: string;
	export const ANDROID_SDK_ROOT: string;
	export const npm_config_globalconfig: string;
	export const GITHUB_PATH: string;
	export const JAVA_HOME: string;
	export const PWD: string;
	export const GITHUB_ACTOR_ID: string;
	export const RUNNER_WORKSPACE: string;
	export const npm_execpath: string;
	export const HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS: string;
	export const GITHUB_EVENT_NAME: string;
	export const HOMEBREW_NO_AUTO_UPDATE: string;
	export const ANDROID_HOME: string;
	export const GITHUB_SERVER_URL: string;
	export const GECKOWEBDRIVER: string;
	export const ACTIONS_ID_TOKEN_REQUEST_URL: string;
	export const GHCUP_INSTALL_BASE_PREFIX: string;
	export const GITHUB_OUTPUT: string;
	export const EDGEWEBDRIVER: string;
	export const HUSKY: string;
	export const npm_config__jsr_registry: string;
	export const npm_command: string;
	export const PNPM_SCRIPT_SRC_DIR: string;
	export const ANDROID_NDK: string;
	export const SGX_AESM_ADDR: string;
	export const PSModulePath: string;
	export const CHROME_BIN: string;
	export const TURBO_TOKEN: string;
	export const SELENIUM_JAR_PATH: string;
	export const MEMORY_PRESSURE_WRITE: string;
	export const PNPM_HOME: string;
	export const ANDROID_NDK_HOME: string;
	export const GITHUB_STEP_SUMMARY: string;
	export const INIT_CWD: string;
}

/**
 * Similar to [`$env/static/private`](https://svelte.dev/docs/kit/$env-static-private), except that it only includes environment variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code.
 * 
 * Values are replaced statically at build time.
 * 
 * ```ts
 * import { PUBLIC_BASE_URL } from &#39;$env/static/public&#39;;
 * ```
 */
declare module &#39;$env/static/public&#39; {
	
}

/**
 * This module provides access to runtime environment variables, as defined by the platform you&#39;re running on. For example if you&#39;re using [`adapter-node`](https://github.com/sveltejs/kit/tree/main/packages/adapter-node) (or running [`vite preview`](https://svelte.dev/docs/kit/cli)), this is equivalent to `process.env`. This module only includes variables that _do not_ begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) _and do_ start with [`config.kit.env.privatePrefix`](https://svelte.dev/docs/kit/configuration#env) (if configured).
 * 
 * This module cannot be imported into client-side code.
 * 
 * ```ts
 * import { env } from &#39;$env/dynamic/private&#39;;
 * console.log(env.DEPLOYMENT_SPECIFIC_VARIABLE);
 * ```
 * 
 * &gt; [!NOTE] In `dev`, `$env/dynamic` always includes environment variables from `.env`. In `prod`, this behavior will depend on your adapter.
 */
declare module &#39;$env/dynamic/private&#39; {
	export const env: {
		GITHUB_TOKEN: string;
		GITHUB_STATE: string;
		CODECOV_TOKEN: string;
		DOTNET_NOLOGO: string;
		USER: string;
		npm_config_user_agent: string;
		JSR_AUTH_TOKEN: string;
		CI: string;
		USE_BAZEL_FALLBACK_VERSION: string;
		RUNNER_ENVIRONMENT: string;
		GITHUB_ENV: string;
		PIPX_HOME: string;
		npm_node_execpath: string;
		JAVA_HOME_8_X64: string;
		NODE_AUTH_TOKEN: string;
		SHLVL: string;
		HOME: string;
		RUNNER_TEMP: string;
		GITHUB_EVENT_PATH: string;
		npm_package_json: string;
		JAVA_HOME_11_X64: string;
		PIPX_BIN_DIR: string;
		GITHUB_REPOSITORY_OWNER: string;
		npm_config_auto_install_peers: string;
		npm_config_cleanup_unused_catalogs: string;
		npm_config_shell_emulator: string;
		GRADLE_HOME: string;
		ANDROID_NDK_LATEST_HOME: string;
		JAVA_HOME_21_X64: string;
		GITHUB_RETENTION_DAYS: string;
		GITHUB_REPOSITORY_OWNER_ID: string;
		POWERSHELL_DISTRIBUTION_CHANNEL: string;
		AZURE_EXTENSION_DIR: string;
		GITHUB_HEAD_REF: string;
		npm_config_userconfig: string;
		SYSTEMD_EXEC_PID: string;
		DO_NOT_TRACK: string;
		ACTIONS_ORCHESTRATION_ID: string;
		npm_config_engine_strict: string;
		GITHUB_GRAPHQL_URL: string;
		JAVA_HOME_25_X64: string;
		NVM_DIR: string;
		npm_config_catalogs: string;
		DOTNET_SKIP_FIRST_TIME_EXPERIENCE: string;
		JAVA_HOME_17_X64: string;
		ImageVersion: string;
		LOGNAME: string;
		RUNNER_OS: string;
		GITHUB_API_URL: string;
		GOROOT_1_22_X64: string;
		SWIFT_PATH: string;
		npm_config_catalog: string;
		pnpm_config_verify_deps_before_run: string;
		CHROMEWEBDRIVER: string;
		GOROOT_1_23_X64: string;
		JOURNAL_STREAM: string;
		GITHUB_WORKFLOW: string;
		_: string;
		MEMORY_PRESSURE_WATCH: string;
		GOROOT_1_24_X64: string;
		npm_config_registry: string;
		ACTIONS_RUNNER_ACTION_ARCHIVE_CACHE: string;
		GOROOT_1_25_X64: string;
		GITHUB_RUN_ID: string;
		GITHUB_REF_TYPE: string;
		BOOTSTRAP_HASKELL_NONINTERACTIVE: string;
		GITHUB_WORKFLOW_SHA: string;
		GITHUB_BASE_REF: string;
		ImageOS: string;
		GITHUB_WORKFLOW_REF: string;
		ACTIONS_ID_TOKEN_REQUEST_TOKEN: string;
		GITHUB_ACTION_REPOSITORY: string;
		ENABLE_RUNNER_TRACING: string;
		npm_config_node_gyp: string;
		PATH: string;
		ANT_HOME: string;
		DOTNET_MULTILEVEL_LOOKUP: string;
		RUNNER_TRACKING_ID: string;
		INVOCATION_ID: string;
		NPM_CONFIG_USERCONFIG: string;
		RUNNER_TOOL_CACHE: string;
		npm_package_name: string;
		NODE: string;
		GITHUB_ACTION: string;
		GITHUB_RUN_NUMBER: string;
		GITHUB_TRIGGERING_ACTOR: string;
		RUNNER_ARCH: string;
		XDG_RUNTIME_DIR: string;
		AGENT_TOOLSDIRECTORY: string;
		npm_config_frozen_lockfile: string;
		TURBO_TEAM: string;
		ZX_VERBOSE: string;
		LANG: string;
		VCPKG_INSTALLATION_ROOT: string;
		npm_config_catalog_mode: string;
		CONDA: string;
		RUNNER_NAME: string;
		XDG_CONFIG_HOME: string;
		GITHUB_REF_NAME: string;
		GITHUB_REPOSITORY: string;
		npm_lifecycle_script: string;
		ANDROID_NDK_ROOT: string;
		GITHUB_ACTION_REF: string;
		DEBIAN_FRONTEND: string;
		SHELL: string;
		GITHUB_REPOSITORY_ID: string;
		GITHUB_ACTIONS: string;
		NODE_PATH: string;
		npm_package_version: string;
		npm_lifecycle_event: string;
		npm_config_verify_deps_before_run: string;
		GITHUB_REF_PROTECTED: string;
		GITHUB_WORKSPACE: string;
		ACCEPT_EULA: string;
		GITHUB_JOB: string;
		npm_config_npm_globalconfig: string;
		npm_config_overrides: string;
		GITHUB_SHA: string;
		GITHUB_RUN_ATTEMPT: string;
		GITHUB_REF: string;
		GITHUB_ACTOR: string;
		ANDROID_SDK_ROOT: string;
		npm_config_globalconfig: string;
		GITHUB_PATH: string;
		JAVA_HOME: string;
		PWD: string;
		GITHUB_ACTOR_ID: string;
		RUNNER_WORKSPACE: string;
		npm_execpath: string;
		HOMEBREW_CLEANUP_PERIODIC_FULL_DAYS: string;
		GITHUB_EVENT_NAME: string;
		HOMEBREW_NO_AUTO_UPDATE: string;
		ANDROID_HOME: string;
		GITHUB_SERVER_URL: string;
		GECKOWEBDRIVER: string;
		ACTIONS_ID_TOKEN_REQUEST_URL: string;
		GHCUP_INSTALL_BASE_PREFIX: string;
		GITHUB_OUTPUT: string;
		EDGEWEBDRIVER: string;
		HUSKY: string;
		npm_config__jsr_registry: string;
		npm_command: string;
		PNPM_SCRIPT_SRC_DIR: string;
		ANDROID_NDK: string;
		SGX_AESM_ADDR: string;
		PSModulePath: string;
		CHROME_BIN: string;
		TURBO_TOKEN: string;
		SELENIUM_JAR_PATH: string;
		MEMORY_PRESSURE_WRITE: string;
		PNPM_HOME: string;
		ANDROID_NDK_HOME: string;
		GITHUB_STEP_SUMMARY: string;
		INIT_CWD: string;
		[key: `PUBLIC_${string}`]: undefined;
		[key: `${string}`]: string | undefined;
	}
}

/**
 * Similar to [`$env/dynamic/private`](https://svelte.dev/docs/kit/$env-dynamic-private), but only includes variables that begin with [`config.kit.env.publicPrefix`](https://svelte.dev/docs/kit/configuration#env) (which defaults to `PUBLIC_`), and can therefore safely be exposed to client-side code.
 * 
 * Note that public dynamic environment variables must all be sent from the server to the client, causing larger network requests — when possible, use `$env/static/public` instead.
 * 
 * ```ts
 * import { env } from &#39;$env/dynamic/public&#39;;
 * console.log(env.PUBLIC_DEPLOYMENT_SPECIFIC_VARIABLE);
 * ```
 */
declare module &#39;$env/dynamic/public&#39; {
	export const env: {
		[key: `PUBLIC_${string}`]: string | undefined;
	}
}
">
<input type="hidden" name="project[files][.svelte-kit/non-ambient.d.ts]" value="
// this file is generated — do not edit it


declare module &quot;svelte/elements&quot; {
	export interface HTMLAttributes&lt;T&gt; {
		&#39;data-sveltekit-keepfocus&#39;?: true | &#39;&#39; | &#39;off&#39; | undefined | null;
		&#39;data-sveltekit-noscroll&#39;?: true | &#39;&#39; | &#39;off&#39; | undefined | null;
		&#39;data-sveltekit-preload-code&#39;?:
			| true
			| &#39;&#39;
			| &#39;eager&#39;
			| &#39;viewport&#39;
			| &#39;hover&#39;
			| &#39;tap&#39;
			| &#39;off&#39;
			| undefined
			| null;
		&#39;data-sveltekit-preload-data&#39;?: true | &#39;&#39; | &#39;hover&#39; | &#39;tap&#39; | &#39;off&#39; | undefined | null;
		&#39;data-sveltekit-reload&#39;?: true | &#39;&#39; | &#39;off&#39; | undefined | null;
		&#39;data-sveltekit-replacestate&#39;?: true | &#39;&#39; | &#39;off&#39; | undefined | null;
	}
}

export {};


declare module &quot;$app/types&quot; {
	export interface AppTypes {
		RouteId(): &quot;/&quot;;
		RouteParams(): {
			
		};
		LayoutParams(): {
			&quot;/&quot;: Record&lt;string, never&gt;
		};
		Pathname(): &quot;/&quot;;
		ResolvedPathname(): `${&quot;&quot; | `/${string}`}${ReturnType&lt;AppTypes[&#39;Pathname&#39;]&gt;}`;
		Asset(): string &amp; {};
	}
}">
<input type="hidden" name="project[files][.svelte-kit/tsconfig.json]" value="{
	&quot;compilerOptions&quot;: {
		&quot;paths&quot;: {
			&quot;$app/types&quot;: [
				&quot;./types/index.d.ts&quot;
			]
		},
		&quot;rootDirs&quot;: [
			&quot;..&quot;,
			&quot;./types&quot;
		],
		&quot;verbatimModuleSyntax&quot;: true,
		&quot;isolatedModules&quot;: true,
		&quot;lib&quot;: [
			&quot;esnext&quot;,
			&quot;DOM&quot;,
			&quot;DOM.Iterable&quot;
		],
		&quot;moduleResolution&quot;: &quot;bundler&quot;,
		&quot;module&quot;: &quot;esnext&quot;,
		&quot;noEmit&quot;: true,
		&quot;target&quot;: &quot;esnext&quot;
	},
	&quot;include&quot;: [
		&quot;ambient.d.ts&quot;,
		&quot;non-ambient.d.ts&quot;,
		&quot;./types/**/$types.d.ts&quot;,
		&quot;../vite.config.js&quot;,
		&quot;../vite.config.ts&quot;,
		&quot;../src/**/*.js&quot;,
		&quot;../src/**/*.ts&quot;,
		&quot;../src/**/*.svelte&quot;,
		&quot;../test/**/*.js&quot;,
		&quot;../test/**/*.ts&quot;,
		&quot;../test/**/*.svelte&quot;,
		&quot;../tests/**/*.js&quot;,
		&quot;../tests/**/*.ts&quot;,
		&quot;../tests/**/*.svelte&quot;
	],
	&quot;exclude&quot;: [
		&quot;../node_modules/**&quot;,
		&quot;../src/service-worker.js&quot;,
		&quot;../src/service-worker/**/*.js&quot;,
		&quot;../src/service-worker.ts&quot;,
		&quot;../src/service-worker/**/*.ts&quot;,
		&quot;../src/service-worker.d.ts&quot;,
		&quot;../src/service-worker/**/*.d.ts&quot;
	]
}">
<input type="hidden" name="project[files][src/app.css]" value="@import url(&quot;https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&amp;display=swap&quot;);

body {
	font-family: Roboto;
}
">
<input type="hidden" name="project[files][src/app.d.ts]" value="// See https://svelte.dev/docs/kit/types#app.d.ts
// for information about these interfaces
declare global {
	namespace App {
		// interface Error {}
		// interface Locals {}
		// interface PageData {}
		// interface PageState {}
		// interface Platform {}
	}
}

export {};
">
<input type="hidden" name="project[files][src/app.html]" value="&lt;!doctype html&gt;
&lt;html lang=&quot;en&quot;&gt;
	&lt;head&gt;
		&lt;meta charset=&quot;utf-8&quot; /&gt;
		&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1&quot; /&gt;
		%sveltekit.head%
	&lt;/head&gt;
	&lt;body data-sveltekit-preload-data=&quot;hover&quot;&gt;
		&lt;div style=&quot;display: contents&quot;&gt;%sveltekit.body%&lt;/div&gt;
	&lt;/body&gt;
&lt;/html&gt;
">
<input type="hidden" name="project[files][.svelte-kit/types/route_meta_data.json]" value="{
	&quot;/&quot;: [
		&quot;src/routes/+page.server.ts&quot;
	]
}">
<input type="hidden" name="project[files][src/routes/+page.server.ts]" value="export const prerender = true;
">
<input type="hidden" name="project[files][src/routes/+page.svelte]" value="&lt;script lang=&quot;ts&quot;&gt;
	import &quot;../app.css&quot;;

	import { page } from &quot;$app/state&quot;;
	import { SocialShareLink } from &quot;@stephansama/svelte-social-share-links&quot;;
&lt;/script&gt;

&lt;h1&gt;Welcome to SvelteKit&lt;/h1&gt;
&lt;p&gt;
	Visit &lt;a href=&quot;https://svelte.dev/docs/kit&quot;&gt;svelte.dev/docs/kit&lt;/a&gt; to read the
	documentation
&lt;/p&gt;

&lt;SocialShareLink url={page.url.href} label=&quot;test&quot; network=&quot;bluesky&quot; /&gt;
&lt;SocialShareLink url={page.url.href} label=&quot;test&quot; styled network=&quot;bluesky&quot; /&gt;
">
<input type="hidden" name="project[files][.svelte-kit/types/src/routes/$types.d.ts]" value="import type * as Kit from &#39;@sveltejs/kit&#39;;

type Expand&lt;T&gt; = T extends infer O ? { [K in keyof O]: O[K] } : never;
// @ts-ignore
type MatcherParam&lt;M&gt; = M extends (param : string) =&gt; param is infer U ? U extends string ? U : string : string;
type RouteParams = {  };
type RouteId = &#39;/&#39;;
type MaybeWithVoid&lt;T&gt; = {} extends T ? T | void : T;
export type RequiredKeys&lt;T&gt; = { [K in keyof T]-?: {} extends { [P in K]: T[K] } ? never : K; }[keyof T];
type OutputDataShape&lt;T&gt; = MaybeWithVoid&lt;Omit&lt;App.PageData, RequiredKeys&lt;T&gt;&gt; &amp; Partial&lt;Pick&lt;App.PageData, keyof T &amp; keyof App.PageData&gt;&gt; &amp; Record&lt;string, any&gt;&gt;
type EnsureDefined&lt;T&gt; = T extends null | undefined ? {} : T;
type OptionalUnion&lt;U extends Record&lt;string, any&gt;, A extends keyof U = U extends U ? keyof U : never&gt; = U extends unknown ? { [P in Exclude&lt;A, keyof U&gt;]?: never } &amp; U : never;
export type Snapshot&lt;T = any&gt; = Kit.Snapshot&lt;T&gt;;
type PageServerParentData = EnsureDefined&lt;LayoutServerData&gt;;
type PageParentData = EnsureDefined&lt;LayoutData&gt;;
type LayoutRouteId = RouteId | &quot;/&quot; | null
type LayoutParams = RouteParams &amp; {  }
type LayoutParentData = EnsureDefined&lt;{}&gt;;

export type PageServerLoad&lt;OutputData extends OutputDataShape&lt;PageServerParentData&gt; = OutputDataShape&lt;PageServerParentData&gt;&gt; = Kit.ServerLoad&lt;RouteParams, PageServerParentData, OutputData, RouteId&gt;;
export type PageServerLoadEvent = Parameters&lt;PageServerLoad&gt;[0];
export type ActionData = unknown;
export type PageServerData = null;
export type PageData = Expand&lt;PageParentData&gt;;
export type Action&lt;OutputData extends Record&lt;string, any&gt; | void = Record&lt;string, any&gt; | void&gt; = Kit.Action&lt;RouteParams, OutputData, RouteId&gt;
export type Actions&lt;OutputData extends Record&lt;string, any&gt; | void = Record&lt;string, any&gt; | void&gt; = Kit.Actions&lt;RouteParams, OutputData, RouteId&gt;
export type PageProps = { params: RouteParams; data: PageData; form: ActionData }
export type LayoutServerData = null;
export type LayoutData = Expand&lt;LayoutParentData&gt;;
export type LayoutProps = { params: LayoutParams; data: LayoutData; children: import(&quot;svelte&quot;).Snippet }
export type RequestEvent = Kit.RequestEvent&lt;RouteParams, RouteId&gt;;">
<input type="hidden" name="project[description]" value="generated by https://pkg.pr.new">
<input type="hidden" name="project[template]" value="node">
<input type="hidden" name="project[title]" value="@example/svelte-social-share-links/svelte-kit">
</form>
<script>document.getElementById("mainForm").submit();</script>

</body></html>