├── .github └── sveltris-logo.png ├── .gitignore ├── README.md ├── docs ├── .gitignore ├── LICENSE ├── README.md ├── components │ ├── counters.module.css │ └── counters.tsx ├── next-env.d.ts ├── next.config.js ├── package-lock.json ├── package.json ├── pages │ ├── _app.tsx │ ├── _meta.json │ └── docs │ │ ├── _meta.json │ │ ├── index.mdx │ │ ├── installation.mdx │ │ └── usage │ │ ├── _meta.json │ │ ├── hooks.mdx │ │ ├── react-in-svelte.mdx │ │ └── svelte-in-react.mdx ├── public │ ├── backdrop-dark.jpg │ ├── backdrop-light.jpg │ ├── favicon.png │ └── sveltris-logo.png ├── styles │ └── index.css ├── theme.config.tsx └── tsconfig.json ├── examples ├── react-in-svelte │ ├── .gitignore │ ├── README.md │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── vite.svg │ ├── src │ │ ├── App.svelte │ │ ├── app.css │ │ ├── assets │ │ │ ├── react.svg │ │ │ └── svelte.svg │ │ ├── button.tsx │ │ ├── main.ts │ │ └── vite-env.d.ts │ ├── svelte.config.js │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── svelte-in-react │ ├── .gitignore │ ├── index.html │ ├── package-lock.json │ ├── package.json │ ├── public │ └── vite.svg │ ├── src │ ├── App.tsx │ ├── Button.svelte │ ├── assets │ │ ├── react.svg │ │ └── svelte.svg │ ├── index.css │ ├── main.tsx │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts ├── package.json ├── src ├── common.ts ├── index.ts ├── react │ ├── browser.tsx │ ├── node.tsx │ └── plugin.ts └── svelte │ ├── browser.ts │ ├── node.ts │ └── plugin.ts ├── tsconfig.json └── tsup.config.ts /.github/sveltris-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/.github/sveltris-logo.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | server.js 4 | .vscode 5 | .DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | .next 2 | node_modules 3 | -------------------------------------------------------------------------------- /docs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/LICENSE -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/components/counters.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/components/counters.module.css -------------------------------------------------------------------------------- /docs/components/counters.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/components/counters.tsx -------------------------------------------------------------------------------- /docs/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/next-env.d.ts -------------------------------------------------------------------------------- /docs/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/next.config.js -------------------------------------------------------------------------------- /docs/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/package-lock.json -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/pages/_app.tsx -------------------------------------------------------------------------------- /docs/pages/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/pages/_meta.json -------------------------------------------------------------------------------- /docs/pages/docs/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/pages/docs/_meta.json -------------------------------------------------------------------------------- /docs/pages/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/pages/docs/index.mdx -------------------------------------------------------------------------------- /docs/pages/docs/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/pages/docs/installation.mdx -------------------------------------------------------------------------------- /docs/pages/docs/usage/_meta.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/pages/docs/usage/_meta.json -------------------------------------------------------------------------------- /docs/pages/docs/usage/hooks.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/pages/docs/usage/hooks.mdx -------------------------------------------------------------------------------- /docs/pages/docs/usage/react-in-svelte.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/pages/docs/usage/react-in-svelte.mdx -------------------------------------------------------------------------------- /docs/pages/docs/usage/svelte-in-react.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/pages/docs/usage/svelte-in-react.mdx -------------------------------------------------------------------------------- /docs/public/backdrop-dark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/public/backdrop-dark.jpg -------------------------------------------------------------------------------- /docs/public/backdrop-light.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/public/backdrop-light.jpg -------------------------------------------------------------------------------- /docs/public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/public/favicon.png -------------------------------------------------------------------------------- /docs/public/sveltris-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/public/sveltris-logo.png -------------------------------------------------------------------------------- /docs/styles/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/styles/index.css -------------------------------------------------------------------------------- /docs/theme.config.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/theme.config.tsx -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /examples/react-in-svelte/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/.gitignore -------------------------------------------------------------------------------- /examples/react-in-svelte/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/README.md -------------------------------------------------------------------------------- /examples/react-in-svelte/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/index.html -------------------------------------------------------------------------------- /examples/react-in-svelte/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/package-lock.json -------------------------------------------------------------------------------- /examples/react-in-svelte/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/package.json -------------------------------------------------------------------------------- /examples/react-in-svelte/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/public/vite.svg -------------------------------------------------------------------------------- /examples/react-in-svelte/src/App.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/src/App.svelte -------------------------------------------------------------------------------- /examples/react-in-svelte/src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/src/app.css -------------------------------------------------------------------------------- /examples/react-in-svelte/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/src/assets/react.svg -------------------------------------------------------------------------------- /examples/react-in-svelte/src/assets/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/src/assets/svelte.svg -------------------------------------------------------------------------------- /examples/react-in-svelte/src/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/src/button.tsx -------------------------------------------------------------------------------- /examples/react-in-svelte/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/src/main.ts -------------------------------------------------------------------------------- /examples/react-in-svelte/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/src/vite-env.d.ts -------------------------------------------------------------------------------- /examples/react-in-svelte/svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/svelte.config.js -------------------------------------------------------------------------------- /examples/react-in-svelte/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/tsconfig.json -------------------------------------------------------------------------------- /examples/react-in-svelte/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/tsconfig.node.json -------------------------------------------------------------------------------- /examples/react-in-svelte/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/react-in-svelte/vite.config.ts -------------------------------------------------------------------------------- /examples/svelte-in-react/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/.gitignore -------------------------------------------------------------------------------- /examples/svelte-in-react/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/index.html -------------------------------------------------------------------------------- /examples/svelte-in-react/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/package-lock.json -------------------------------------------------------------------------------- /examples/svelte-in-react/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/package.json -------------------------------------------------------------------------------- /examples/svelte-in-react/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/public/vite.svg -------------------------------------------------------------------------------- /examples/svelte-in-react/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/src/App.tsx -------------------------------------------------------------------------------- /examples/svelte-in-react/src/Button.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/src/Button.svelte -------------------------------------------------------------------------------- /examples/svelte-in-react/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/src/assets/react.svg -------------------------------------------------------------------------------- /examples/svelte-in-react/src/assets/svelte.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/src/assets/svelte.svg -------------------------------------------------------------------------------- /examples/svelte-in-react/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/src/index.css -------------------------------------------------------------------------------- /examples/svelte-in-react/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/src/main.tsx -------------------------------------------------------------------------------- /examples/svelte-in-react/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/src/vite-env.d.ts -------------------------------------------------------------------------------- /examples/svelte-in-react/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/tsconfig.json -------------------------------------------------------------------------------- /examples/svelte-in-react/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/tsconfig.node.json -------------------------------------------------------------------------------- /examples/svelte-in-react/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/examples/svelte-in-react/vite.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/package.json -------------------------------------------------------------------------------- /src/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/src/common.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/react/browser.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/src/react/browser.tsx -------------------------------------------------------------------------------- /src/react/node.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/src/react/node.tsx -------------------------------------------------------------------------------- /src/react/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/src/react/plugin.ts -------------------------------------------------------------------------------- /src/svelte/browser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/src/svelte/browser.ts -------------------------------------------------------------------------------- /src/svelte/node.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/svelte/plugin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/src/svelte/plugin.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mokshit06/sveltris/HEAD/tsup.config.ts --------------------------------------------------------------------------------