├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src └── index.ts ├── svelte-readonly.code-workspace ├── tsconfig.cjs.json └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisfole/svelte-readonly/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisfole/svelte-readonly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisfole/svelte-readonly/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisfole/svelte-readonly/HEAD/package.json -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisfole/svelte-readonly/HEAD/src/index.ts -------------------------------------------------------------------------------- /svelte-readonly.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisfole/svelte-readonly/HEAD/svelte-readonly.code-workspace -------------------------------------------------------------------------------- /tsconfig.cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisfole/svelte-readonly/HEAD/tsconfig.cjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Crisfole/svelte-readonly/HEAD/tsconfig.json --------------------------------------------------------------------------------